-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
25 lines (20 loc) · 1011 Bytes
/
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 2.8.9)
project(Locator)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_HOMEPAGE "http://www.example.com/Slicer/Extensions/Locator")
set(EXTENSION_CATEGORY "IGT")
set(EXTENSION_CONTRIBUTORS "Junichi Tokuda, Wei Wang, Ehud Schmidt (BWH)")
set(EXTENSION_DESCRIPTION "Utility module for MR Tracking Research.")
set(EXTENSION_ICONURL "http://www.example.com/Slicer/Extensions/Locator.png")
set(EXTENSION_SCREENSHOTURLS "http://www.example.com/Slicer/Extensions/Locator/Screenshots/1.png")
#-----------------------------------------------------------------------------
# Extension dependencies
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
#-----------------------------------------------------------------------------
# Extension modules
add_subdirectory(Locator)
## NEXT_MODULE
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_CPACK})