File: CMakeLists.txt

package info (click to toggle)
fpzip 1.3.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 288 kB
  • sloc: cpp: 1,461; ansic: 488; makefile: 74
file content (8 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
add_executable(fpzipcmd fpzip.cpp)
if(NOT MSVC)
  set_property(TARGET fpzipcmd PROPERTY OUTPUT_NAME fpzip)
endif()
target_link_libraries(fpzipcmd fpzip)
if(HAVE_LIBM_MATH)
  target_link_libraries(fpzipcmd m)
endif()