Files
Jungfraujoch/image_analysis/spot_finding/CMakeLists.txt
2025-10-20 20:43:44 +02:00

20 lines
558 B
CMake

ADD_LIBRARY(JFJochSpotFinding STATIC
ImageSpotFinderCPU.cpp
ImageSpotFinderCPU.h
SpotUtils.cpp
SpotUtils.h
SpotFindingSettings.h
StrongPixelSet.cpp
StrongPixelSet.h
DetModuleSpotFinder_cpu.h
ImageSpotFinder.cpp
ImageSpotFinder.h
ImageSpotFinderFactory.cpp
ImageSpotFinderFactory.h
)
TARGET_LINK_LIBRARIES(JFJochSpotFinding JFJochCommon)
IF (JFJOCH_CUDA_AVAILABLE)
TARGET_SOURCES(JFJochSpotFinding PRIVATE ImageSpotFinderGPU.cu ImageSpotFinderGPU.h)
ENDIF()