CMakeLists.txt 1.0 KB

1234567891011121314151617181920212223242526
  1. cmake_minimum_required(VERSION 2.8.9)
  2. project(MyFirstSlicerExtension)
  3. #-----------------------------------------------------------------------------
  4. # Extension meta-information
  5. set(EXTENSION_HOMEPAGE "http://wiscigt.powertheword.com/andrej.studen/labkeySlicerPythonAPI")
  6. set(EXTENSION_CATEGORY "LabKey")
  7. set(EXTENSION_CONTRIBUTORS "Andrej Studen")
  8. set(EXTENSION_DESCRIPTION "Slicer LabKey extension")
  9. set(EXTENSION_ICONURL "http://www-beta1.labkey.com/wp-content/uploads/2016/03/LK-wTAG-COLOR.png")
  10. set(EXTENSION_SCREENSHOTURLS "http://www-beta1.labkey.com/wp-content/uploads/2016/03/LK-wTAG-COLOR.png")
  11. #-----------------------------------------------------------------------------
  12. # Extension dependencies
  13. find_package(Slicer REQUIRED)
  14. include(${Slicer_USE_FILE})
  15. #-----------------------------------------------------------------------------
  16. # Extension modules
  17. add_subdirectory(labkeySlicerPythonExtension)
  18. add_subdirectory(utils)
  19. ## NEXT_MODULE
  20. #-----------------------------------------------------------------------------
  21. include(${Slicer_EXTENSION_CPACK})