CMakeLists.txt 602 B

1234567891011121314151617181920
  1. include_directories(
  2. ${CMAKE_SOURCE_DIR}
  3. )
  4. link_directories(${UFODECODE_LIBRARY_DIRS})
  5. add_executable(xilinx xilinx.c)
  6. target_link_libraries(xilinx pcilib rt)
  7. add_executable(lorenzo_ipedma_test lorenzo_ipedma_test.c)
  8. target_link_libraries(lorenzo_ipedma_test pcilib rt)
  9. set_target_properties(lorenzo_ipedma_test PROPERTIES COMPILE_FLAGS -Wno-array-bounds)
  10. add_executable(pio_test pio_test.c)
  11. target_link_libraries(pio_test pcilib rt)
  12. add_executable(compare_to_value compare_to_value.c)
  13. add_executable(heb_strip_bad_values heb_strip_bad_values.c)
  14. add_executable(check_counter check_counter.c)