SOEM/test/simple_ng/CMakeLists.txt
Nicola Fontana a50ed4bf4c Add simple_ng test program
This is a rewrite of `simple_test` with the following major changes:

* portable codebase, so no splitting between different OS;
* no threads: they are not needed for such simple task;
* use newer APIs (i.e., ecx_... functions).
2021-04-10 16:49:17 +02:00

5 lines
143 B
CMake

set(SOURCES simple_ng.c)
add_executable(simple_ng ${SOURCES})
target_link_libraries(simple_ng soem)
install(TARGETS simple_ng DESTINATION bin)