mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-20 08:38:00 +02:00
38 lines
970 B
CMake
Executable File
38 lines
970 B
CMake
Executable File
# Config file for @PROJECT_NAME_LOWER@
|
|
#
|
|
# It defines the following variables:
|
|
#
|
|
# @PROJECT_NAME_UPPER@_INCLUDE_DIRS - include directory
|
|
# @PROJECT_NAME_UPPER@_LIBRARIES - all dynamic libraries
|
|
# @PROJECT_NAME_UPPER@_STATIC_LIBRARIES - all static libraries
|
|
|
|
@PACKAGE_INIT@
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
set(SLS_USE_HDF5 "@SLS_USE_HDF5@")
|
|
|
|
|
|
find_package(ZeroMQ 4 QUIET)
|
|
# libzmq autotools install: fallback to pkg-config
|
|
if(NOT ZeroMQ_FOUND)
|
|
list (APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/libzmq-pkg-config)
|
|
find_package(ZeroMQ 4 REQUIRED)
|
|
endif()
|
|
|
|
if(NOT ZeroMQ_FOUND)
|
|
message(FATAL_ERROR "ZeroMQ was NOT found!")
|
|
endif()
|
|
|
|
find_dependency(Threads)
|
|
|
|
# Add optional dependencies here
|
|
if (SLS_USE_HDF5)
|
|
find_dependency(HDF5)
|
|
endif ()
|
|
|
|
set_and_check(@PROJECT_NAME_UPPER@_CMAKE_INCLUDE_DIRS "@PACKAGE_CMAKE_INSTALL_DIR@")
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@TARGETS_EXPORT_NAME@.cmake")
|
|
check_required_components("@PROJECT_NAME@")
|