* cleanup CMakeLists.txt * build with more warnings, warnings as errors * fix expression has no effect warning * fix unused parameter warnings * fix loss of precision warning * remove obsolete files
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)
|