option(ENABLE_JSBSIM "Set to ON to build FlightGear with JSBSim FDM" ON)
option(ENABLE_FGADMIN "Set to ON to build FlightGear with FGADMIN" ON)
option(EVENT_INPUT "Set to ON to build FlightGear with event-based Input support" OFF)
-option(ENABLE_LIBSVN "Set to ON to build FlightGear/terrasync with libsvnclient support" OFF)
+option(ENABLE_LIBSVN "Set to ON to build FlightGear/terrasync with libsvnclient support" ON)
option(WITH_FGPANEL "Set to ON to build the fgpanel application" ON)
set(MSVC_3RDPARTY_ROOT NOT_FOUND CACHE PATH "Location where the third-party dependencies are extracted")
message(STATUS "apr-1-config not found, implement manual search for APR")
endif(HAVE_APR_CONFIG)
-find_path(LIBSVN_INCLUDE_DIR svn_client.h
- HINTS
- $ENV{LIBSVN_DIR}
- PATH_SUFFIXES include/subversion-1
- PATHS
- /usr/local
- /usr
- /opt
-)
+if(HAVE_APR_CONFIG)
+ find_path(LIBSVN_INCLUDE_DIR svn_client.h
+ HINTS
+ $ENV{LIBSVN_DIR}
+ PATH_SUFFIXES include/subversion-1
+ PATHS
+ /usr/local
+ /usr
+ /opt
+ )
-check_library_exists(svn_client-1 svn_client_checkout "" HAVE_LIB_SVNCLIENT)
-check_library_exists(svn_subr-1 svn_cmdline_init "" HAVE_LIB_SVNSUBR)
-check_library_exists(svn_ra-1 svn_ra_initialize "" HAVE_LIB_SVNRA)
+ check_library_exists(svn_client-1 svn_client_checkout "" HAVE_LIB_SVNCLIENT)
+ check_library_exists(svn_subr-1 svn_cmdline_init "" HAVE_LIB_SVNSUBR)
+ check_library_exists(svn_ra-1 svn_ra_initialize "" HAVE_LIB_SVNRA)
-include(FindPackageHandleStandardArgs)
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(LIBSVN DEFAULT_MSG
- HAVE_LIB_SVNSUBR
- HAVE_LIB_SVNCLIENT
- HAVE_LIB_SVNRA
- LIBSVN_INCLUDE_DIR)
+ include(FindPackageHandleStandardArgs)
+ FIND_PACKAGE_HANDLE_STANDARD_ARGS(LIBSVN DEFAULT_MSG
+ HAVE_LIB_SVNSUBR
+ HAVE_LIB_SVNCLIENT
+ HAVE_LIB_SVNRA
+ LIBSVN_INCLUDE_DIR)
-if(LIBSVN_FOUND)
- set(LIBSVN_LIBRARIES "svn_client-1" "svn_subr-1" "svn_ra-1" ${APR_LIBS})
-endif(LIBSVN_FOUND)
+ if(LIBSVN_FOUND)
+ set(LIBSVN_LIBRARIES "svn_client-1" "svn_subr-1" "svn_ra-1" ${APR_LIBS})
+ endif(LIBSVN_FOUND)
+endif(HAVE_APR_CONFIG)