X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=CMakeLists.txt;h=9374a3eef50916a8fb27b3c70237384f29de14e1;hb=59a6fd1ed8190c5c7f2e785bc013c2a209a02457;hp=489be89c3d72edf688bd6ed10d8ac768745e486d;hpb=5181aecc7b87bf638eaec028c9c566ebf38f839d;p=simgear.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 489be89c..9374a3ee 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,6 +20,8 @@ set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/CMakeModules;${CMAKE_MODULE_PATH}") option(SIMGEAR_SHARED "Set to ON to build SimGear as a shared library/framework" OFF) option(SIMGEAR_HEADLESS "Set to ON to build SimGear with GUI/graphics support" OFF) option(JPEG_FACTORY "Enable JPEG-factory support" OFF) +option(ENABLE_LIBSVN "Set to ON to build SimGear with libsvnclient support" OFF) + set(MSVC_3RDPARTY_ROOT NOT_FOUND CACHE PATH "Location where the third-party dependencies are extracted") if (MSVC AND MSVC_3RDPARTY_ROOT) @@ -67,6 +69,16 @@ if(JPEG_FACTORY) include_directories(${JPEG_INCLUDE_DIR}) endif() +if(ENABLE_LIBSVN) + find_package(SvnClient) + + if(LIBSVN_FOUND) + message(STATUS "libsvn found, enabling in SimGear") + set(HAVE_SVN_CLIENT_H 1) + set(HAVE_LIBSVN_CLIENT_1 1) + endif(LIBSVN_FOUND) +endif(ENABLE_LIBSVN) + check_include_file(sys/time.h HAVE_SYS_TIME_H) check_include_file(sys/timeb.h HAVE_SYS_TIMEB_H) check_include_file(unistd.h HAVE_UNISTD_H)