1234567891011121314151617181920212223242526 |
- cmake_minimum_required(VERSION 2.8.9)
- project(MyFirstSlicerExtension)
- #-----------------------------------------------------------------------------
- # 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)
- ## NEXT_MODULE
- #-----------------------------------------------------------------------------
- include(${Slicer_EXTENSION_CPACK})
|