13 lines
320 B
CMake
13 lines
320 B
CMake
|
|
set(SOURCES eepromtool.c)
|
|
add_executable(eepromtool ${SOURCES})
|
|
target_link_libraries(eepromtool soem)
|
|
|
|
if(WIN32)
|
|
target_link_libraries(eepromtool wpcap.lib Packet.lib Ws2_32.lib Winmm.lib)
|
|
elseif(UNIX)
|
|
target_link_libraries(eepromtool pthread rt)
|
|
endif()
|
|
|
|
install(TARGETS eepromtool DESTINATION bin)
|