mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
24 lines
328 B
CMake
24 lines
328 B
CMake
set(SOURCES
|
|
main.c
|
|
dma.c
|
|
fifo.c
|
|
hls.c
|
|
intc.c
|
|
rtds_rtt.c
|
|
tmrctr.c
|
|
xsg.c
|
|
)
|
|
|
|
add_executable(unit-tests ${SOURCES})
|
|
|
|
find_package(Criterion REQUIRED)
|
|
|
|
target_include_directories(unit-tests PUBLIC
|
|
../include
|
|
${CRITERION_INCLUDE_DIRECTORIES}
|
|
)
|
|
|
|
target_link_libraries(unit-tests PUBLIC
|
|
villas-fpga
|
|
${CRITERION_LIBRARIES}
|
|
)
|