File: CMakeLists.txt

package info (click to toggle)
hdrmerge 0.5%2Bgit20200117-4.1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 33,936 kB
  • sloc: cpp: 5,043; sh: 175; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 618 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
include_directories(${Boost_INCLUDE_DIRS})

set(
    test_sources
    testMain.cpp
    testImageStack.cpp
    testBitmap.cpp
    testHistogram.cpp
    testBoxBlur.cpp
    testArray2D.cpp
    testDngFloatWriter.cpp
    )

#add_executable(hdrmerge-test ${test_sources} $<TARGET_OBJECTS:hdrmerge-objects> $<TARGET_OBJECTS:hdrmerge-gui-objects>)
add_executable(hdrmerge-test
    ${test_sources}
    )

if(APPLE)
    target_link_libraries(hdrmerge-test ${hdrmerge_libs} alglib-objects ${Boost_LIBRARIES} Qt5::Widgets)
else()
    target_link_libraries(hdrmerge-test ${hdrmerge_libs} ${Boost_LIBRARIES} Qt5::Widgets)
endif()