-
Notifications
You must be signed in to change notification settings - Fork 5
/
CMakeLists.txt
22 lines (17 loc) · 1.13 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
cmake_minimum_required(VERSION 2.8.9)
project(IDCBrowser)
#-----------------------------------------------------------------------------
set(EXTENSION_HOMEPAGE "https://github.com/ImagingDataCommons/SlicerIDCBrowser")
set(EXTENSION_CATEGORY "Informatics")
set(EXTENSION_CONTRIBUTORS "Andrey Fedorov (SPL and BWH)")
set(EXTENSION_DESCRIPTION "A Module to explore and access imaging data available from National Cancer Institute Imaging Data Commons.")
set(EXTENSION_ICONURL "https://raw.githubusercontent.com/ImagingDataCommons/SlicerIDCBrowser/main/IDCBrowser/Resources/Icons/IDCBrowser_alpha.png")
set(EXTENSION_SCREENSHOTURLS "https://github.com/ImagingDataCommons/SlicerIDCBrowser/blob/main/IDCBrowser/Resources/Screenshot/screenshot.png")
set(EXTENSION_DEPENDS "QuantitativeReporting")
#-----------------------------------------------------------------------------
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
#-----------------------------------------------------------------------------
add_subdirectory(IDCBrowser)
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_CPACK})