CMakeLists.txt 259 B

123456789
  1. # --- Build test executable -------------------------------------------------
  2. include_directories(
  3. ${CMAKE_SOURCE_DIR}/src
  4. )
  5. add_executable(ipedec ipedec.c)
  6. target_link_libraries(ipedec ufodecode)
  7. install(TARGETS ipedec DESTINATION ${BIN_INSTALL_DIR})