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