comparison Resources/CMake/OrthancFrameworkParameters.cmake @ 3228:4b9cfd92d1ae

preparing for libicu
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 14 Feb 2019 19:41:09 +0100
parents abb204aed6bf
children 32596919d729
comparison
equal deleted inserted replaced
3227:53bb1f4b3844 3228:4b9cfd92d1ae
41 set(USE_SYSTEM_CIVETWEB ON CACHE BOOL "Use the system version of Civetweb (experimental)") 41 set(USE_SYSTEM_CIVETWEB ON CACHE BOOL "Use the system version of Civetweb (experimental)")
42 set(USE_SYSTEM_CURL ON CACHE BOOL "Use the system version of LibCurl") 42 set(USE_SYSTEM_CURL ON CACHE BOOL "Use the system version of LibCurl")
43 set(USE_SYSTEM_GOOGLE_TEST ON CACHE BOOL "Use the system version of Google Test") 43 set(USE_SYSTEM_GOOGLE_TEST ON CACHE BOOL "Use the system version of Google Test")
44 set(USE_SYSTEM_JSONCPP ON CACHE BOOL "Use the system version of JsonCpp") 44 set(USE_SYSTEM_JSONCPP ON CACHE BOOL "Use the system version of JsonCpp")
45 set(USE_SYSTEM_LIBICONV ON CACHE BOOL "Use the system version of libiconv") 45 set(USE_SYSTEM_LIBICONV ON CACHE BOOL "Use the system version of libiconv")
46 set(USE_SYSTEM_LIBICU ON CACHE BOOL "Use the system version of libicu")
46 set(USE_SYSTEM_LIBJPEG ON CACHE BOOL "Use the system version of libjpeg") 47 set(USE_SYSTEM_LIBJPEG ON CACHE BOOL "Use the system version of libjpeg")
47 set(USE_SYSTEM_LIBP11 OFF CACHE BOOL "Use the system version of libp11 (PKCS#11 wrapper library)") 48 set(USE_SYSTEM_LIBP11 OFF CACHE BOOL "Use the system version of libp11 (PKCS#11 wrapper library)")
48 set(USE_SYSTEM_LIBPNG ON CACHE BOOL "Use the system version of libpng") 49 set(USE_SYSTEM_LIBPNG ON CACHE BOOL "Use the system version of libpng")
49 set(USE_SYSTEM_LUA ON CACHE BOOL "Use the system version of Lua") 50 set(USE_SYSTEM_LUA ON CACHE BOOL "Use the system version of Lua")
50 set(USE_SYSTEM_MONGOOSE ON CACHE BOOL "Use the system version of Mongoose") 51 set(USE_SYSTEM_MONGOOSE ON CACHE BOOL "Use the system version of Mongoose")
64 set(ENABLE_DCMTK_JPEG_LOSSLESS ON CACHE BOOL "Enable JPEG-LS (Lossless) decompression") 65 set(ENABLE_DCMTK_JPEG_LOSSLESS ON CACHE BOOL "Enable JPEG-LS (Lossless) decompression")
65 66
66 # Advanced and distribution-specific parameters 67 # Advanced and distribution-specific parameters
67 set(USE_GOOGLE_TEST_DEBIAN_PACKAGE OFF CACHE BOOL "Use the sources of Google Test shipped with libgtest-dev (Debian only)") 68 set(USE_GOOGLE_TEST_DEBIAN_PACKAGE OFF CACHE BOOL "Use the sources of Google Test shipped with libgtest-dev (Debian only)")
68 set(SYSTEM_MONGOOSE_USE_CALLBACKS ON CACHE BOOL "The system version of Mongoose uses callbacks (version >= 3.7)") 69 set(SYSTEM_MONGOOSE_USE_CALLBACKS ON CACHE BOOL "The system version of Mongoose uses callbacks (version >= 3.7)")
69 set(USE_BOOST_ICONV ON CACHE BOOL "Use iconv instead of wconv (Windows only)") 70 set(BOOST_LOCALE_BACKEND "iconv" CACHE STRING "Back-end for locales that is used by Boost (can be \"iconv\", \"icu\", or \"wconv\" on Windows)")
70 set(USE_PUGIXML ON CACHE BOOL "Use the Pugixml parser (turn off only for debug)") 71 set(USE_PUGIXML ON CACHE BOOL "Use the Pugixml parser (turn off only for debug)")
71 set(USE_LEGACY_JSONCPP OFF CACHE BOOL "Use the old branch 0.x.y of JsonCpp, that does not require a C++11 compiler (for old versions of Visual Studio)") 72 set(USE_LEGACY_JSONCPP OFF CACHE BOOL "Use the old branch 0.x.y of JsonCpp, that does not require a C++11 compiler (for old versions of Visual Studio)")
72 73
73 mark_as_advanced(USE_GOOGLE_TEST_DEBIAN_PACKAGE) 74 mark_as_advanced(USE_GOOGLE_TEST_DEBIAN_PACKAGE)
74 mark_as_advanced(SYSTEM_MONGOOSE_USE_CALLBACKS) 75 mark_as_advanced(SYSTEM_MONGOOSE_USE_CALLBACKS)
75 mark_as_advanced(USE_BOOST_ICONV) 76 mark_as_advanced(BOOST_LOCALE_BACKEND)
76 mark_as_advanced(USE_PUGIXML) 77 mark_as_advanced(USE_PUGIXML)
77 mark_as_advanced(USE_LEGACY_JSONCPP) 78 mark_as_advanced(USE_LEGACY_JSONCPP)
78 79
79 80
80 ##################################################################### 81 #####################################################################