-
Notifications
You must be signed in to change notification settings - Fork 14
/
CMakeLists.txt
29 lines (24 loc) · 1.55 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
cmake_minimum_required(VERSION 2.8.9)
project(Q3DC)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_HOMEPAGE "https://www.slicer.org/slicerWiki/index.php/Documentation/Nightly/Extensions/Q3DC")
set(EXTENSION_CATEGORY "Shape Analysis")
set(EXTENSION_CONTRIBUTORS "Lucie Macron (University of Michigan), Jean-Baptiste Vimort (University of Michigan), James Hoctor (Kitware Inc), David Allemang (Kitware Inc)")
set(EXTENSION_DESCRIPTION "This extension contains one module of the same name. Using placed fiducials, it allows users to compute 2D angles: Yaw, Pitch and Roll; and decompose the 3D distance into the three different components: R-L, A-P and S-I. It is possible to compute the middle point between two fiducials and export the values.")
set(EXTENSION_ICONURL "https://raw.githubusercontent.com/DCBIA-OrthoLab/Q3DCExtension/master/Q3DC.png")
set(EXTENSION_SCREENSHOTURLS "https://www.slicer.org/slicerWiki/index.php/File:Q3DC_Interface.png")
set(EXTENSION_ENABLED 1)
set(EXTENSION_DEPENDS "SlicerMarkupConstraints")
#-----------------------------------------------------------------------------
# Extension dependencies
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
#-----------------------------------------------------------------------------
# Extension modules
add_subdirectory(AQ3DC)
add_subdirectory(Q3DC)
## NEXT_MODULE
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_GENERATE_CONFIG})
include(${Slicer_EXTENSION_CPACK})