File: CMakeLists.txt

package info (click to toggle)
diskscan 0.21-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,656 kB
  • sloc: ansic: 11,136; python: 338; xml: 138; sh: 41; makefile: 34
file content (9 lines) | stat: -rw-r--r-- 370 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
add_executable(hdr_decoder hdr_decoder.c)
target_link_libraries(hdr_decoder hdr_histogram m z)
install(TARGETS hdr_decoder DESTINATION bin)

if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
    add_executable(hiccup hiccup.c)
    target_link_libraries(hiccup hdr_histogram m z pthread rt)
    install(TARGETS hiccup DESTINATION bin)
endif(${CMAKE_SYSTEM_NAME} MATCHES "Linux")