comparison CMakeLists.txt @ 1323:5a92665dee23

Sample plugin: Serve folders
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 13 Feb 2015 14:28:16 +0100
parents 98a6796d658c
children afaa55d42ddd
comparison
equal deleted inserted replaced
1322:f497a72d9f71 1323:5a92665dee23
39 # Experimental options 39 # Experimental options
40 SET(USE_PUGIXML ON CACHE BOOL "Use the Pugixml parser (turn off only for debug)") 40 SET(USE_PUGIXML ON CACHE BOOL "Use the Pugixml parser (turn off only for debug)")
41 41
42 # Distribution-specific settings 42 # Distribution-specific settings
43 SET(USE_GTEST_DEBIAN_SOURCE_PACKAGE OFF CACHE BOOL "Use the sources of Google Test shipped with libgtest-dev (Debian only)") 43 SET(USE_GTEST_DEBIAN_SOURCE_PACKAGE OFF CACHE BOOL "Use the sources of Google Test shipped with libgtest-dev (Debian only)")
44 SET(SYSTEM_MONGOOSE_USE_CALLBACKS ON CACHE BOOL "The system version of Mongoose uses callbacks (version >= 3.7)")
45 SET(USE_BOOST_ICONV ON CACHE BOOL "Use iconv instead of wconv (Windows only)")
46
44 mark_as_advanced(USE_GTEST_DEBIAN_SOURCE_PACKAGE) 47 mark_as_advanced(USE_GTEST_DEBIAN_SOURCE_PACKAGE)
45 SET(SYSTEM_MONGOOSE_USE_CALLBACKS ON CACHE BOOL "The system version of Mongoose uses callbacks (version >= 3.7)")
46 mark_as_advanced(SYSTEM_MONGOOSE_USE_CALLBACKS) 48 mark_as_advanced(SYSTEM_MONGOOSE_USE_CALLBACKS)
49 mark_as_advanced(USE_BOOST_ICONV)
47 50
48 # Path to the root folder of the Orthanc distribution 51 # Path to the root folder of the Orthanc distribution
49 set(ORTHANC_ROOT ${CMAKE_SOURCE_DIR}) 52 set(ORTHANC_ROOT ${CMAKE_SOURCE_DIR})
50 53
51 # Some basic inclusions 54 # Some basic inclusions