forked from PerkLab/SlicerSandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
48 lines (43 loc) · 2.06 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
cmake_minimum_required(VERSION 3.5)
project(Sandbox)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_HOMEPAGE "https://github.com/PerkLab/SlicerSandbox")
set(EXTENSION_CATEGORY "Examples")
set(EXTENSION_CONTRIBUTORS "Csaba Pinter (Queen's University), Andras Lasso (Queen's University)")
set(EXTENSION_DESCRIPTION "Collection of utilities that are not polished implementations but can be useful to users")
set(EXTENSION_ICONURL "https://github.com/PerkLab/SlicerSandbox/raw/master/Sandbox_Logo_128.png")
set(EXTENSION_SCREENSHOTURLS "https://raw.githubusercontent.com/PerkLab/SlicerSandbox/master/RemovePatientTable.jpg https://raw.githubusercontent.com/PerkLab/SlicerSandbox/master/Lights.jpg")
set(EXTENSION_DEPENDS "NA") # Specified as a space separated string, a list or 'NA' if any
#-----------------------------------------------------------------------------
# Extension dependencies
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
#-----------------------------------------------------------------------------
# Extension modules
add_subdirectory(AutoSave)
add_subdirectory(CharacterizeTransformMatrix)
add_subdirectory(CombineModels)
add_subdirectory(CurvedPlanarReformat)
add_subdirectory(DocumentationTools)
if (Slicer_VERSION VERSION_LESS 5.1)
# Latest Slicer 5.1 and above has ITK-Snap Label Description File importer built in
add_subdirectory(ImportItkSnapLabel)
endif()
add_subdirectory(ImportOCT)
add_subdirectory(ImportOpenInventor)
add_subdirectory(ImportOsirixROI)
add_subdirectory(ImportSliceOmatic)
add_subdirectory(Lights)
add_subdirectory(LineProfile)
add_subdirectory(LoadRemoteFile)
add_subdirectory(SceneRecorder)
add_subdirectory(SegmentCrossSectionArea)
add_subdirectory(StitchVolumes)
add_subdirectory(StyleTester)
add_subdirectory(UserStatistics)
add_subdirectory(VolumeRenderingSpecialEffects)
add_subdirectory(RemoveCtTable)
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_GENERATE_CONFIG})
include(${Slicer_EXTENSION_CPACK})