# HG changeset patch # User Sebastien Jodogne # Date 1504190854 -7200 # Node ID 7f9a78f7b5a753c0ba11844c032c064e94b3fb48 # Parent 807ddffc0eeb810ee1eb048a63859e26a3b27e24 STANDALONE_BUILD is a paramater of the Orthanc framework diff -r 807ddffc0eeb -r 7f9a78f7b5a7 CMakeLists.txt --- a/CMakeLists.txt Wed Aug 30 13:27:05 2017 +0200 +++ b/CMakeLists.txt Thu Aug 31 16:47:34 2017 +0200 @@ -25,7 +25,8 @@ ##################################################################### -## CMake parameters tunable at the command line +## CMake parameters tunable at the command line to configure the +## plugins, the companion tools, and the unit tests ##################################################################### # Parameters of the build @@ -33,7 +34,6 @@ SET(BUILD_RECOVER_COMPRESSED_FILE ON CACHE BOOL "Whether to build the companion tool to recover files compressed using Orthanc") SET(BUILD_SERVE_FOLDERS ON CACHE BOOL "Whether to build the ServeFolders plugin") SET(ENABLE_PLUGINS ON CACHE BOOL "Enable plugins") -SET(STANDALONE_BUILD ON CACHE BOOL "Standalone build (all the resources are embedded, necessary for releases)") SET(UNIT_TESTS_WITH_HTTP_CONNEXIONS ON CACHE BOOL "Allow unit tests to make HTTP requests") # Advanced parameters to fine-tune linking against system libraries diff -r 807ddffc0eeb -r 7f9a78f7b5a7 Resources/CMake/OrthancFrameworkParameters.cmake --- a/Resources/CMake/OrthancFrameworkParameters.cmake Wed Aug 30 13:27:05 2017 +0200 +++ b/Resources/CMake/OrthancFrameworkParameters.cmake Thu Aug 31 16:47:34 2017 +0200 @@ -22,6 +22,7 @@ # Support of static compilation set(ALLOW_DOWNLOADS OFF CACHE BOOL "Allow CMake to download packages") set(STATIC_BUILD OFF CACHE BOOL "Static build of the third-party libraries (necessary for Windows)") +set(STANDALONE_BUILD ON CACHE BOOL "Standalone build (all the resources are embedded, necessary for releases)") # Generic parameters of the build set(ENABLE_CIVETWEB OFF CACHE BOOL "Use Civetweb instead of Mongoose (experimental)")