bcst: now forwarded to clients

This commit is contained in:
2019-06-10 17:20:56 +02:00
parent 6dbe2c26d8
commit eb6a202c71
2 changed files with 17 additions and 2 deletions

15
CMakeLists.txt Normal file
View File

@ -0,0 +1,15 @@
cmake_minimum_required(VERSION 2.4)
project(serialmultiplexer)
set(SRC_FILES main.cpp serial_io.cpp Socket.cpp )
set(LIBS -pthread )
add_executable(${PROJECT_NAME} ${SRC_FILES})
target_link_libraries( ${PROJECT_NAME} ${LIBS})
set_target_properties( ${PROJECT_NAME} PROPERTIES COMPILE_FLAGS -m64 LINK_FLAGS -m64)
add_definitions(" -std=c++11 -Wall ")
install(TARGETS serialmultiplexer RUNTIME DESTINATION bin)