-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
24 lines (19 loc) · 917 Bytes
/
CMakeLists.txt
File metadata and controls
24 lines (19 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
cmake_minimum_required(VERSION 2.8.9)
project(DeepHeart)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_CATEGORY "Cardiac")
set(EXTENSION_CONTRIBUTORS "Christian Herz (CHOP), Andras Lasso (PerkLab, Queen's), Matthew Jolley (CHOP)")
set(EXTENSION_DESCRIPTION "Modules for the segmentation of heart valves using DeepLearning")
set(EXTENSION_DEPENDS SlicerHeart MONAILabel)
#-----------------------------------------------------------------------------
# Extension dependencies
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
#-----------------------------------------------------------------------------
# Extension modules
add_subdirectory(slicer/DeepHeart)
add_subdirectory(slicer/ExportHeartData)
## NEXT_MODULE
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_CPACK})