-
Notifications
You must be signed in to change notification settings - Fork 8
/
CMakeLists.txt
21 lines (16 loc) · 1001 Bytes
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
cmake_minimum_required(VERSION 2.8.9)
project(CurveMaker)
#-----------------------------------------------------------------------------
set(EXTENSION_HOMEPAGE "https://www.slicer.org/slicerWiki/index.php/Documentation/Nightly/Extensions/CurveMaker")
set(EXTENSION_CATEGORY "Informatics")
set(EXTENSION_CONTRIBUTORS "Junichi Tokuda (BWH)")
set(EXTENSION_DESCRIPTION "This is a module to generate a curve based on a list of fiducial points.")
set(EXTENSION_ICONURL "https://www.slicer.org/slicerWiki/images/b/b7/CurveMakerIcon.png")
set(EXTENSION_SCREENSHOTURLS "https://www.slicer.org/slicerWiki/images/0/0b/Slicer4-CurveMaker-GUI.png")
#-----------------------------------------------------------------------------
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
#-----------------------------------------------------------------------------
add_subdirectory(CurveMaker)
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_CPACK})