6 lines
152 B
CMake
6 lines
152 B
CMake
|
|
|
||
|
|
set(SOURCES simple_test.c)
|
||
|
|
add_executable(simple_test ${SOURCES})
|
||
|
|
target_link_libraries(simple_test soem)
|
||
|
|
install(TARGETS simple_test DESTINATION bin)
|