comparison Applications/CMakeLists.txt @ 57:91fc9583b2de

big refactoring to support sparse tiling
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 24 Nov 2016 17:48:24 +0100
parents 175d06fa292e
children 35468714a38e
comparison
equal deleted inserted replaced
56:83cd735c885d 57:91fc9583b2de
7 ##################################################################### 7 #####################################################################
8 8
9 # Generic parameters 9 # Generic parameters
10 SET(STATIC_BUILD OFF CACHE BOOL "Static build of the third-party libraries (necessary for Windows)") 10 SET(STATIC_BUILD OFF CACHE BOOL "Static build of the third-party libraries (necessary for Windows)")
11 SET(ALLOW_DOWNLOADS OFF CACHE BOOL "Allow CMake to download packages") 11 SET(ALLOW_DOWNLOADS OFF CACHE BOOL "Allow CMake to download packages")
12 SET(ENABLE_PROFILING OFF CACHE BOOL "Whether to enable the generation of profiling information with gprof")
12 13
13 # Optional components 14 # Optional components
14 SET(ENABLE_SSL OFF CACHE BOOL "Include support for SSL") 15 SET(ENABLE_SSL OFF CACHE BOOL "Include support for SSL")
15 SET(USE_DCMTK_361 OFF CACHE BOOL "Use forthcoming DCMTK version 3.6.1 in static builds (instead of 3.6.0)") 16 SET(USE_DCMTK_361 OFF CACHE BOOL "Use forthcoming DCMTK version 3.6.1 in static builds (instead of 3.6.0)")
16 17
312 COMMENT "Generating documentation with Doxygen" VERBATIM 313 COMMENT "Generating documentation with Doxygen" VERBATIM
313 ) 314 )
314 else() 315 else()
315 message("Doxygen not found. The documentation will not be built.") 316 message("Doxygen not found. The documentation will not be built.")
316 endif() 317 endif()
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332 add_executable(Hello
333 Hello.cpp
334 ApplicationToolbox.cpp
335 )
336
337 target_link_libraries(Hello OrthancWSIFramework ${DCMTK_LIBRARIES})