9 lines
303 B
CMake
9 lines
303 B
CMake
find_package(Threads REQUIRED)
|
|
|
|
return(0)
|
|
|
|
add_executable(socketcan socketcan.cpp)
|
|
target_link_libraries(socketcan di)
|
|
set_source_files_properties(socketcan.cpp PROPERTIES COMPILE_FLAGS "-Wno-old-style-cast -Wno-write-strings -fno-exceptions")
|
|
target_link_libraries(socketcan ${CMAKE_THREAD_LIBS_INIT})
|