123456789101112131415161718192021222324252627 |
- cmake_minimum_required(VERSION 2.8.9)
- project(labkeySlicerPythonAPI)
- #-----------------------------------------------------------------------------
- # Extension meta-information
- set(EXTENSION_HOMEPAGE "http://wiscigt.powertheword.com/andrej.studen/labkeySlicerPythonAPI")
- set(EXTENSION_CATEGORY "LabKey")
- set(EXTENSION_CONTRIBUTORS "Andrej Studen")
- set(EXTENSION_DESCRIPTION "Slicer LabKey extension")
- set(EXTENSION_ICONURL "http://www-beta1.labkey.com/wp-content/uploads/2016/03/LK-wTAG-COLOR.png")
- set(EXTENSION_SCREENSHOTURLS "http://www-beta1.labkey.com/wp-content/uploads/2016/03/LK-wTAG-COLOR.png")
- #-----------------------------------------------------------------------------
- # Extension dependencies
- find_package(Slicer REQUIRED)
- include(${Slicer_USE_FILE})
- #-----------------------------------------------------------------------------
- # Extension modules
- add_subdirectory(labkeySlicerPythonExtension)
- add_subdirectory(utils)
- add_subdirectory(DICOMtools)
- ## NEXT_MODULE
- #-----------------------------------------------------------------------------
- include(${Slicer_EXTENSION_CPACK})
|