summaryrefslogtreecommitdiffstats
path: root/apps/CMakeLists.txt
blob: b3ce318a65f76f4a71e41f2b7d4b8eae2d6c9ab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
include_directories(
    ${CMAKE_SOURCE_DIR}
)

link_directories(${UFODECODE_LIBRARY_DIRS})

add_executable(xilinx xilinx.c)
target_link_libraries(xilinx pcilib rt)

add_executable(pio_test pio_test.c)
target_link_libraries(pio_test pcilib rt)

add_executable(compare_to_value compare_to_value.c)