Warning, /acts/Examples/Detectors/GenericDetector/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 add_library(
0002 ActsExamplesDetectorGeneric
0003 SHARED
0004 src/AlignedGenericDetector.cpp
0005 src/GenericDetector.cpp
0006 src/GenericDetectorElement.cpp
0007 src/LayerBuilder.cpp
0008 src/ProtoLayerCreator.cpp
0009 src/GenericDetectorBuilder.cpp
0010 )
0011
0012 acts_compile_headers(ActsExamplesDetectorGeneric GLOB "include/**/*.hpp")
0013
0014 target_include_directories(
0015 ActsExamplesDetectorGeneric
0016 PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
0017 )
0018
0019 target_link_libraries(
0020 ActsExamplesDetectorGeneric
0021 PUBLIC ActsCore ActsExamplesFramework ActsExamplesDetectorsCommon
0022 )
0023
0024 install(
0025 TARGETS ActsExamplesDetectorGeneric
0026 LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
0027 )