mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-05-01 10:20:04 +02:00

* removed Makefile for moench and integrated the build in CMake * broke out tiff reading and writing to its own library * moved tiff includes to include/sls * moved tiffio source to src * removed incorrectly used bps * cleanup and tests for tiffio * removed using namespace std from header * some fixing for moench04 * Program for offline processing renamed Co-authored-by: Anna Bergamaschi <anna.bergamaschi@psi.ch>
14 lines
305 B
CMake
14 lines
305 B
CMake
find_package(TIFF REQUIRED)
|
|
add_library(tiffio STATIC src/tiffIO.cpp)
|
|
target_include_directories(tiffio PUBLIC include/)
|
|
target_link_libraries(tiffio
|
|
PUBLIC
|
|
TIFF::TIFF
|
|
PRIVATE
|
|
slsProjectWarnings
|
|
slsProjectOptions
|
|
)
|
|
|
|
if(SLS_USE_TESTS)
|
|
add_subdirectory(tests)
|
|
endif() |