-
Notifications
You must be signed in to change notification settings - Fork 22
/
CMakeLists.txt
28 lines (23 loc) · 1.57 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
cmake_minimum_required(VERSION 3.13.4)
project(LungCTAnalyzer)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_HOMEPAGE "https://github.com/Slicer/SlicerLungCTAnalyzer#lung-ct-analyzer")
set(EXTENSION_CATEGORY "Chest Imaging Platform")
set(EXTENSION_CONTRIBUTORS "Rudolf Bumm (KSGR Chur Switzerland)")
set(EXTENSION_DESCRIPTION "Extension for segmentation and spatial reconstruction of infiltrated and collapsed areas in chest CT examinations.")
set(EXTENSION_ICONURL "https://raw.githubusercontent.com/Slicer/SlicerLungCTAnalyzer/master/LungCTAnalyzer.png")
set(EXTENSION_SCREENSHOTURLS "https://user-images.githubusercontent.com/18140094/98554410-f5ddd600-22a0-11eb-9196-b9223c8ada3f.jpg https://user-images.githubusercontent.com/18140094/98554914-9207dd00-22a1-11eb-9bae-7f537a765cc3.jpg https://user-images.githubusercontent.com/18140094/98555178-e6ab5800-22a1-11eb-8cbf-7dfa3e346b43.jpg")
set(EXTENSION_DEPENDS "PyTorch SegmentEditorExtraEffects SurfaceWrapSolidify") # Specified as a list or "NA" if no dependencies
#-----------------------------------------------------------------------------
# Extension dependencies
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
#-----------------------------------------------------------------------------
# Extension modules
add_subdirectory(LungCTAnalyzer)
add_subdirectory(LungCTSegmenter)
## NEXT_MODULE
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_GENERATE_CONFIG})
include(${Slicer_EXTENSION_CPACK})