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).
5 lines
143 B
CMake
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)
|