-
Notifications
You must be signed in to change notification settings - Fork 3
/
CMakeLists.txt
32 lines (25 loc) · 1.51 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
cmake_minimum_required(VERSION 3.5)
project(PathReconstruction)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_HOMEPAGE "http://www.slicerigt.org")
set(EXTENSION_CATEGORY "IGT")
set(EXTENSION_CONTRIBUTORS "Thomas Vaughan (Queen's University)")
set(EXTENSION_DESCRIPTION "This extension contains a module for reconstructing catheter paths from spatial tracking information. Intended users should have real-time tracking hardware (e.g. electromagnetic field generator and sensors) connected to 3D Slicer through OpenIGTLink network." )
set(EXTENSION_ICONURL "https://raw.githubusercontent.com/SlicerIGT/SlicerPathReconstruction/master/PathReconstruction.png" )
set(EXTENSION_SCREENSHOTURLS "http://www.slicer.org/slicerWiki/images/7/78/SlicerIGTScreenshot.png" )
set(EXTENSION_DEPENDS SlicerIGT SlicerRT MarkupsToModel ) # Specified as a space separated list or 'NA' if any
#-----------------------------------------------------------------------------
# Extension dependencies
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
find_package(SlicerIGT REQUIRED)
find_package(SlicerRT REQUIRED)
find_package(MarkupsToModel REQUIRED)
#-----------------------------------------------------------------------------
# Extension modules
add_subdirectory(PathReconstruction)
add_subdirectory(PathVerification)
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_GENERATE_CONFIG})
include(${Slicer_EXTENSION_CPACK})