mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-24 23:30:03 +02:00
22 lines
493 B
CMake
22 lines
493 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
|
|
|
|
find_package(Qt4)
|
|
find_package(Qwt 6)
|
|
find_package(CBF)
|
|
find_package(Doxygen)
|
|
|
|
add_subdirectory(slsDetectorSoftware)
|
|
add_subdirectory(slsReceiverSoftware)
|
|
add_subdirectory(slsImageReconstruction)
|
|
if (QT4_FOUND AND QWT_FOUND)
|
|
add_subdirectory(slsDetectorGui)
|
|
endif()
|
|
|
|
if (DEFINED ENV{ROOTSYS})
|
|
find_package(ROOT)
|
|
if (ROOT_FOUND)
|
|
add_subdirectory(calibrationWizards)
|
|
endif()
|
|
endif()
|