-
Notifications
You must be signed in to change notification settings - Fork 8
/
CMakeLists.txt
36 lines (29 loc) · 1.64 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
cmake_minimum_required(VERSION 3.0.1)
project(SlicerPathology)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_HOMEPAGE "http://wiki.slicer.org/slicerWiki/index.php/Documentation/Nightly/Extensions/SlicerPathology")
set(EXTENSION_CATEGORY "Pathology")
set(EXTENSION_CONTRIBUTORS "Erich Bremer (Stony Brook University), Yi Gao (Stony Brook University), Joel Saltz (Stony Brook University), Nicole Aucoin (BWH), Jean-Christophe Fillion-Robin (Kitware), Andrey Fedorov (BWH)")
set(EXTENSION_DESCRIPTION "An extension to provide multiscale segmentation tools.")
set(EXTENSION_ICONURL "https://raw.githubusercontent.com/SBU-BMI/SlicerPathology/master/SlicerPathology.png")
set(EXTENSION_SCREENSHOTURLS "http://wiki.na-mic.org/Wiki/images/3/3b/SlicerPathologybeginworkweek2016.png")
set(EXTENSION_DEPENDS "SlicerOpenCV")
#-----------------------------------------------------------------------------
# Extension dependencies
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
# Add the CMake subdirectory which contains a FindSlicerOpenCV.cmake file
# that will help find the package automatically
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake" ${CMAKE_MODULE_PATH})
find_package(SlicerOpenCV REQUIRED)
#-----------------------------------------------------------------------------
# Extension modules
add_subdirectory(QuickTCGA)
add_subdirectory(QuickTCGAEffect)
add_subdirectory(ShortCut)
add_subdirectory(ShortCutEffect)
add_subdirectory(SlicerPathology)
## NEXT_MODULE
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_CPACK})