-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCMakeLists.txt
25 lines (20 loc) · 1.38 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
cmake_minimum_required(VERSION 3.5)
project(AstmPhantomTest)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_HOMEPAGE "https://www.atracsys-measurement.com/astm/")
set(EXTENSION_CATEGORY "IGT")
set(EXTENSION_CONTRIBUTORS "Sylvain Bernhardt (Atracsys LLC)")
set(EXTENSION_DESCRIPTION "This extension for 3D Slicer is an assistant in performing the accuracy test of a tracking system as described in the ASTM standard F2554.")
set(EXTENSION_ICONURL "https://raw.githubusercontent.com/Atracsys/SlicerAstmPhantomTest/master/SlicerAstmPhantomTest.png")
set(EXTENSION_SCREENSHOTURLS "https://raw.githubusercontent.com/Atracsys/SlicerAstmPhantomTest/master/screenshots/screenshot1.png https://raw.githubusercontent.com/Atracsys/SlicerAstmPhantomTest/master/screenshots/screenshot2.png https://raw.githubusercontent.com/Atracsys/SlicerAstmPhantomTest/master/screenshots/screenshot3.png")
set(EXTENSION_DEPENDS "SlicerOpenIGTLink")
#-----------------------------------------------------------------------------
# Extension dependencies
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
#-----------------------------------------------------------------------------
# Extension modules
add_subdirectory(AstmPhantomTest)
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_CPACK})