forked from SimpleITK/SimpleITK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
524 lines (408 loc) · 18.2 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
cmake_minimum_required ( VERSION 2.8.1 FATAL_ERROR )
# Explicitly add INCREMENTAL linking option to command lines.
# http://www.cmake.org/pipermail/cmake/2010-February/035174.html
SET(MSVC_INCREMENTAL_DEFAULT ON)
project ( SimpleITK )
cmake_policy( VERSION 2.8.1 )
# Include extra CMake files
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake")
#-----------------------------------------------------------------------------
# Version information
include(Version.cmake)
set(SimpleITK_VERSION "${SimpleITK_VERSION_MAJOR}.${SimpleITK_VERSION_MINOR}")
if(DEFINED SimpleITK_VERSION_PATCH)
set(SimpleITK_VERSION "${SimpleITK_VERSION}.${SimpleITK_VERSION_PATCH}")
if(DEFINED SimpleITK_VERSION_TWEAK)
set(SimpleITK_VERSION "${SimpleITK_VERSION}.${SimpleITK_VERSION_TWEAK}")
endif()
endif()
if(DEFINED SimpleITK_VERSION_RC)
set(SimpleITK_VERSION "${SimpleITK_VERSION}${SimpleITK_VERSION_RC}")
endif()
if(DEFINED SimpleITK_VERSION_POST)
set(SimpleITK_VERSION "${SimpleITK_VERSION}.post${SimpleITK_VERSION_POST}")
elseif(DEFINED SimpleITK_VERSION_DEV)
set(SimpleITK_VERSION "${SimpleITK_VERSION}.dev${SimpleITK_VERSION_DEV}")
endif()
option( SimpleITK_BUILD_DISTRIBUTE "Remove '-g#####' from version. ( for official distribution only )" OFF )
mark_as_advanced( SimpleITK_BUILD_DISTRIBUTE )
if( NOT SimpleITK_BUILD_DISTRIBUTE )
set(SimpleITK_VERSION "${SimpleITK_VERSION}-g${SimpleITK_VERSION_HASH}")
endif()
message(STATUS "Building SimpleITK version \"${SimpleITK_VERSION}\"")
#-----------------------------------------------------------
# Check and set required flags for compilation
# This must be done before any other try compiles based tests are
# done.
include(sitkCheckRequiredFlags)
find_package(ITK REQUIRED ) # the modules needed can be listed here as required components
if(ITK_FOUND)
# NOTE: We are purposely not calling UseITK yet. However, we must make
# sure the requred compilation and linker flags are set. Since, we
# are trying to encapsulate ITK, we need to very carefully control
# in access to the headers and libraries, hence each SimpleITK
# library will call UseITK.
# Add compiler flags needed to use ITK.
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${ITK_REQUIRED_C_FLAGS}")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${ITK_REQUIRED_CXX_FLAGS}")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${ITK_REQUIRED_LINK_FLAGS}")
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${ITK_REQUIRED_LINK_FLAGS}")
set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} ${ITK_REQUIRED_LINK_FLAGS}")
link_directories( "${ITK_LIBRARY_DIRS}")
endif()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${SimpleITK_REQUIRED_C_FLAGS}")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${SimpleITK_REQUIRED_CXX_FLAGS}")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${SimpleITK_REQUIRED_LINK_FLAGS}")
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${SimpleITK_REQUIRED_LINK_FLAGS}")
set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} ${SimpleITK_REQUIRED_LINK_FLAGS}")
if( NOT ITK_USE_REVIEW )
# TODO need to check ITK configuration to verify that it has the needed modules
# message(FATAL_ERROR "Please reconfigure ITK by turning ITK_USE_REVIEW ON")
endif()
# Setup build locations.
if(NOT CMAKE_RUNTIME_OUTPUT_DIRECTORY)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin)
endif()
if(NOT CMAKE_LIBRARY_OUTPUT_DIRECTORY)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib)
endif()
if(NOT CMAKE_ARCHIVE_OUTPUT_DIRECTORY)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib)
endif()
set ( SimpleITK_INCLUDE_DIRS
${CMAKE_SOURCE_DIR}/Code/Common/include
${CMAKE_SOURCE_DIR}/Code/Registration/include
${CMAKE_SOURCE_DIR}/Code/BasicFilters/include
${CMAKE_SOURCE_DIR}/Code/IO/include
${CMAKE_BINARY_DIR}/Code/BasicFilters/include
${CMAKE_BINARY_DIR}/Code/Common/include
)
set ( SimpleITK_LIBRARIES SimpleITKCommon SimpleITKIO SimpleITKRegistration CACHE INTERNAL "" )
# Be sure to clear these each time
set ( GENERATED_TEST_LIST "" CACHE INTERNAL "" )
set ( GENERATED_FILTER_LIST "" CACHE INTERNAL "" )
set ( GENERATED_TEST_SOURCE_LIST "" CACHE INTERNAL "" )
#----------------------------------------------------------
# Place all options to go into sitkConfigure.h here
set( SITK_INT64_PIXELIDS_DEFAULT ON )
if( MSVC )
# See http://www.cmake.org/cmake/help/v2.8.10/cmake.html#variable:MSVC_VERSION
# and https://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Version_history
# 1500 = VS 9.0 (Visual Studio 2008)
# 1600 = VS 10.0 (Visual Studio 2010)
# 1700 = VS 11.0 (Visual Studio 2012)
if(MSVC_VERSION VERSION_LESS 1600)
# with this option on the linker runs out of memory
set( SITK_INT64_PIXELIDS_DEFAULT OFF )
endif()
endif()
option( SITK_INT64_PIXELIDS "Instantiate 64-bit integer pixels, including unsigned, vector and label maps." ${SITK_INT64_PIXELIDS_DEFAULT} )
# Setting this option will shorten compile times by reducing the
# amount of pixel types and generated code.
# NB: this option should _NOT_ be used for releases!
option ( SITK_EXPRESS_INSTANTIATEDPIXELS "Instantiate very few pixel types ( for use for development only )" OFF )
mark_as_advanced ( SITK_EXPRESS_INSTANTIATEDPIXELS )
#-----------------------------------------------------------------------------
# SimpleITK build configuration options.
option(BUILD_SHARED_LIBS "Build SimpleITK ITK with shared libraries. This does not effect wrapped languages." OFF)
set(SITK_BUILD_SHARED_LIBS ${BUILD_SHARED_LIBS})
set(JAR_FILE "simpleitk-${SimpleITK_VERSION}.jar")
set(JAVADOC_FILE "simpleitk-javadoc-${SimpleITK_VERSION}.jar")
set(JAVA_SOURCE_FILE "simpleitk-source-${SimpleITK_VERSION}.jar")
# Create cached list of all template components
file( GLOB template_components
${SimpleITK_SOURCE_DIR}/TemplateComponents/*.h.in
${SimpleITK_SOURCE_DIR}/TemplateComponents/*.cxx.in
)
set ( template_components ${template_components} CACHE INTERNAL "" )
#------------------------------------------------------------------------------
# Variables for use in install rules:
if(NOT SimpleITK_INSTALL_RUNTIME_DIR)
set(SimpleITK_INSTALL_RUNTIME_DIR "bin")
endif()
if(NOT SimpleITK_INSTALL_LIBRARY_DIR)
set(SimpleITK_INSTALL_LIBRARY_DIR "lib")
endif()
if(NOT SimpleITK_INSTALL_ARCHIVE_DIR)
set(SimpleITK_INSTALL_ARCHIVE_DIR "lib")
endif()
if(NOT SimpleITK_INSTALL_INCLUDE_DIR)
set(SimpleITK_INSTALL_INCLUDE_DIR "include/SimpleITK-${SimpleITK_VERSION_MAJOR}.${SimpleITK_VERSION_MINOR}")
endif()
if(NOT SimpleITK_INSTALL_DOC_DIR)
set(SimpleITK_INSTALL_DOC_DIR share/doc/SimpleITK-${SimpleITK_VERSION_MAJOR}.${SimpleITK_VERSION_MINOR})
endif()
if(NOT SimpleITK_INSTALL_PACKAGE_DIR)
set(SimpleITK_INSTALL_PACKAGE_DIR "lib/cmake/SimpleITK-${SimpleITK_VERSION_MAJOR}.${SimpleITK_VERSION_MINOR}")
endif()
function(sitk_install_exported_target tgt)
# Remove the build tree's SimpleITKTargets file if this is the first call:
get_property(first_time GLOBAL PROPERTY SimpleITK_FIRST_EXPORTED_TARGET)
if(NOT first_time)
file(REMOVE ${CMAKE_BINARY_DIR}/SimpleITKTargets.cmake)
set_property(GLOBAL PROPERTY SimpleITK_FIRST_EXPORTED_TARGET 1)
endif()
set_property(TARGET ${tgt} PROPERTY VERSION 1)
set_property(TARGET ${tgt} PROPERTY SOVERSION 1)
set_property(TARGET ${tgt} PROPERTY
OUTPUT_NAME ${tgt}-${SimpleITK_VERSION_MAJOR}.${SimpleITK_VERSION_MINOR})
export(TARGETS ${tgt}
APPEND FILE "${CMAKE_BINARY_DIR}/SimpleITKTargets.cmake"
)
install(TARGETS ${tgt}
EXPORT SimpleITKTargets
RUNTIME DESTINATION ${SimpleITK_INSTALL_RUNTIME_DIR}
LIBRARY DESTINATION ${SimpleITK_INSTALL_LIBRARY_DIR}
ARCHIVE DESTINATION ${SimpleITK_INSTALL_ARCHIVE_DIR}
)
endfunction()
#------------------------------------------------------------------------------
# Strip Option
# Add option to strip wrapping libraries.
# Since the wrapping libraries don't get installed by the normal cmake
# installation process, this option enables stripping of the libraries
# as part of the build process. It should be used on the laguage
# targets and the the SimpleITK iterface, as those can be installed
# into the system.
option(SimpleITK_BUILD_STRIP "Strip executables and libraries after building." OFF)
mark_as_advanced(SimpleITK_BUILD_STRIP)
set(CMAKE_STRIP_FLAGS "-x" CACHE STRING "Flags used by strip in the post_build.")
mark_as_advanced(CMAKE_STRIP_FLAGS)
separate_arguments(CMAKE_STRIP_FLAGS)
function(sitk_strip_target tgt)
if(NOT SimpleITK_BUILD_STRIP)
return()
endif()
get_property(type TARGET ${tgt} PROPERTY TYPE)
if(NOT type STREQUAL STATIC_LIBRARY)
add_custom_command(
TARGET ${tgt}
POST_BUILD
COMMAND ${CMAKE_STRIP} ${CMAKE_STRIP_FLAGS} "$<TARGET_FILE:${tgt}>"
)
endif()
endfunction()
#------------------------------------------------------------------------------
# These are some system specific compiler options needed to build SimpleITK
if(MSVC)
# /bigobj is required for windows builds because of the size of
# some object files (CastImage for instance)
# Also supress the pesky warning about std::vector not being marked
# for export in the dll
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj /wd4251" )
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /bigobj" )
# Avoid some warnings
add_definitions ( -D_SCL_SECURE_NO_WARNINGS )
# force debug linking not to be incremental
foreach( _varName
CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO )
STRING(REGEX REPLACE "INCREMENTAL(:[a-zA-Z]+)?" "INCREMENTAL:NO" ${_varName} ${${_varName}})
endforeach()
endif()
include(CheckCXXCompilerFlag)
# The fPIC flags is used to create position independent code. It is
# required on some systems to produce shared libraries. On Apple
# systems the flag has no effect as it is the default. On other
# platforms, this flag may enable libraries to be better shared
# between processes. Therefore, if the compiler supports it, we will
# use it.
check_cxx_compiler_flag( "-fPIC" CXX_HAS_fPIC )
if( CXX_HAS_fPIC )
if(NOT "${CMAKE_CXX_FLAGS}" MATCHES "-fPIC")
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC" )
endif()
endif( )
#-----------------------------------------------------------
# Place all checks and try compile variable for sitkConfigure.h here
include(sitkCheckCXX11)
include(CheckIncludeFileCXX)
# check for stdint
# This generates a configuration error if the compiler is not supported
check_include_file_cxx( stdint.h SITK_HAS_STDINT_H )
if(NOT STDINT_HAVE_STDINT_H)
if( WIN32 )
if(MSVC)
list(APPEND SimpleITK_INCLUDE_DIRS
"${SimpleITK_SOURCE_DIR}/Utilities/C99")
add_subdirectory("${SimpleITK_SOURCE_DIR}/Utilities/C99")
endif()
endif()
endif()
include_directories( ${SimpleITK_INCLUDE_DIRS} )
#------------------------------------------------------------------------------
# assemble a list of important documentation from Simple ITK and ITK
set ( SimpleITK_DOC_FILES
"${CMAKE_CURRENT_SOURCE_DIR}/LICENSE"
"${CMAKE_CURRENT_SOURCE_DIR}/NOTICE"
"${CMAKE_CURRENT_SOURCE_DIR}/Readme.md"
)
# add important files from ITK
# if using from build tree then ITK_USE_FILE will be
# ITK_SOURCE_DIR/CMake/UseITK.cmake. The needed docs should be in the
# root of the source tree
get_filename_component( _itk_root "${ITK_USE_FILE}" PATH )
get_filename_component( _itk_root "${_itk_root}" PATH )
set( _itk_source_path "${_itk_root}" )
get_filename_component( _itk_root "${_itk_root}" PATH )
get_filename_component( _itk_root "${_itk_root}" PATH )
set( _itk_doc_path "${_itk_root}/share/doc/ITK-${ITK_VERSION_MAJOR}.${ITK_VERSION_MINOR}" )
if( EXISTS "${_itk_source_path}/NOTICE" )
set( ITK_DOC_FILES
# "${_itk_source_path}/LICENSE" SimpleITK has same license file
"${_itk_source_path}/NOTICE"
"${_itk_source_path}/README.txt"
)
elseif( EXISTS "${_itk_doc_path}/NOTICE" )
set( ITK_DOC_FILES
# "${_itk_doc_path}/LICENSE" SimpleITK has same license file
"${_itk_doc_path}/NOTICE"
"${_itk_doc_path}/README.txt"
)
else()
message( "doc_path: ${_itk_doc_path}" )
message( WARNING "Unable to file ITK's NOTICE File!\n This file will not be included in SimpleITK packaging!" )
endif()
foreach(_f IN LISTS ITK_DOC_FILES)
get_filename_component( _name "${_f}" NAME )
set( _o "${CMAKE_CURRENT_BINARY_DIR}/ITK-${ITK_VERSION_MAJOR}.${ITK_VERSION_MINOR}-${_name}" )
configure_file( "${_f}" "${_o}" )
list( APPEND SimpleITK_DOC_FILES "${_o}" )
endforeach()
#------------------------------------------------------------------------------
# Set up Documentation
include(${SimpleITK_SOURCE_DIR}/Utilities/Doxygen/Doxygen.cmake)
#------------------------------------------------------------------------------
# Set up wrapping.
#
# Use CMake file which present options for wrapped languages, and finds languages as needed
#
include(sitkLanguageOptions)
#------------------------------------------------------------------------------
# Ensure that development strips have been setup
include(sitkCheckSourceTree)
#------------------------------------------------------------------------------
# set things up for testing, this configuration needs to occour before
# we enter the sub-directories
include(CTest)
#------------------------------------------------------------------------------
# Go to subdirectories
add_subdirectory ( Utilities )
add_subdirectory ( Code )
add_subdirectory ( Wrapping )
# optional examples directory
option(BUILD_EXAMPLES "Build the Examples directory." ON)
if(BUILD_EXAMPLES)
add_subdirectory ( Examples )
endif()
#------------------------------------------------------------------------------
# ITK uses KWStyle for checking the coding style
include(${SimpleITK_SOURCE_DIR}/Utilities/KWStyle/KWStyle.cmake)
#------------------------------------------------------------------------------
# set things up for testing, if enabled
if ( BUILD_TESTING )
# Fetch testing data.
# 2.8.11 required for ExternalData.cmake.
if( CMAKE_VERSION VERSION_LESS 2.8.11 )
message( FATAL_ERROR "BUILD_TESTING ON requires CMake 2.8.11 or newer." )
endif()
include( SimpleITKExternalData )
file( GLOB_RECURSE content_links
RELATIVE "${SimpleITK_SOURCE_DIR}" "Testing/Data/*.md5" )
foreach(link ${content_links})
string( REGEX REPLACE "\\.md5$" "" link ${link} )
ExternalData_Expand_Arguments( SimpleITKData
link_location
DATA{${link}}
)
endforeach()
ExternalData_Add_Target( SimpleITKData )
enable_testing()
add_subdirectory ( Testing )
option ( RUN_LONG_TESTS "Run long tests. Some tests have been identified as long running, should these be run?" OFF )
mark_as_advanced(RUN_LONG_TESTS)
set(BUILDNAME "${BUILDNAME}" CACHE STRING "Name of build on the dashboard")
configure_file(CMake/CTestCustom.cmake.in CTestCustom.cmake)
endif()
#------------------------------------------------------------------------------
# Options for documentation
option ( BUILD_DOCUMENTS "Build the Documentation subdirectory" OFF )
if ( BUILD_DOCUMENTS )
add_subdirectory ( Documentation )
endif()
#------------------------------------------------------------------------------
# Configure SimpleITKConfig.cmake for the build tree.
set(SimpleITKConfig_TREE "build")
set(SimpleITKConfig_CODE "")
set(SimpleITKConfig_INCLUDE_DIRS ${SimpleITK_INCLUDE_DIRS})
configure_file(SimpleITKConfig.cmake.in
SimpleITKConfig.cmake @ONLY IMMEDIATE)
#------------------------------------------------------------------------------
# Configure SimpleITKConfig.cmake for the install tree.
set(SimpleITKConfig_TREE "install")
set(SimpleITKConfig_CODE "set(SimpleITK_INSTALL_PREFIX \"\${_SimpleITKConfig_DIR}\")")
# Construct the proper number of get_filename_component(... PATH)
# calls to compute the installation prefix.
string(REGEX REPLACE "/" ";" _count "${SimpleITK_INSTALL_PACKAGE_DIR}")
foreach(p ${_count})
set(SimpleITKConfig_CODE "${SimpleITKConfig_CODE}
get_filename_component(SimpleITK_INSTALL_PREFIX \"\${SimpleITK_INSTALL_PREFIX}\" PATH)")
endforeach(p)
set(SimpleITKConfig_CODE "${SimpleITKConfig_CODE}\n")
set(SimpleITKConfig_INCLUDE_DIRS
"\${SimpleITK_INSTALL_PREFIX}/${SimpleITK_INSTALL_INCLUDE_DIR}")
configure_file(SimpleITKConfig.cmake.in
CMakeFiles/SimpleITKConfig.cmake @ONLY IMMEDIATE)
#------------------------------------------------------------------------------
# Help other projects use SimpleITK
configure_file(UseSimpleITK.cmake.in
UseSimpleITK.cmake COPYONLY IMMEDIATE)
configure_file(SimpleITKConfigVersion.cmake.in
SimpleITKConfigVersion.cmake @ONLY IMMEDIATE)
#------------------------------------------------------------------------------
# INSTALLATION
install(FILES ${SimpleITK_BINARY_DIR}/CMakeFiles/SimpleITKConfig.cmake
${SimpleITK_BINARY_DIR}/SimpleITKConfigVersion.cmake
${SimpleITK_BINARY_DIR}/UseSimpleITK.cmake
DESTINATION ${SimpleITK_INSTALL_PACKAGE_DIR}
COMPONENT Development)
install(EXPORT SimpleITKTargets
DESTINATION ${SimpleITK_INSTALL_PACKAGE_DIR}
COMPONENT Development)
file( GLOB __files
${CMAKE_SOURCE_DIR}/Code/BasicFilters/include/*.h
${CMAKE_SOURCE_DIR}/Code/BasicFilters/include/*.hxx
${CMAKE_SOURCE_DIR}/Code/Common/include/*.h
${CMAKE_SOURCE_DIR}/Code/Common/include/*.hxx
${CMAKE_SOURCE_DIR}/Code/IO/include/*.h
${CMAKE_SOURCE_DIR}/Code/IO/include/*.hxx
${CMAKE_SOURCE_DIR}/Code/Registration/include/*.h
${CMAKE_SOURCE_DIR}/Code/Registration/include/*.hxx
)
set(__files ${__files}
${SimpleITKBasicFiltersGeneratedHeader}
)
install(FILES ${__files}
DESTINATION ${SimpleITK_INSTALL_INCLUDE_DIR}
COMPONENT Development)
install(
DIRECTORY
${CMAKE_SOURCE_DIR}/Code/Common/include/Ancillary
${CMAKE_SOURCE_DIR}/Code/Common/include/nsstd
DESTINATION
${SimpleITK_INSTALL_INCLUDE_DIR}/
COMPONENT Development
FILES_MATCHING PATTERN "*.h"
)
install(FILES ${SimpleITK_DOC_FILES} DESTINATION "${SimpleITK_INSTALL_DOC_DIR}" COMPONENT Runtime)
#------------------------------------------------------------------------------
# CPack
set(CPACK_SOURCE_IGNORE_FILES "${ITK_MODULES_DISABLED_CPACK};/\\\\.git")
set(CPACK_PACKAGE_VERSION_MAJOR "${SimpleITK_Major}")
set(CPACK_PACKAGE_VERSION_MINOR "${SimpleITK_Minor}")
set(CPACK_PACKAGE_VERSION_PATCH "${SimpleITK_Patch}")
include( CPack )