2017-01-07 03:13:23 +00:00
|
|
|
cmake_minimum_required(VERSION 3.0)
|
|
|
|
project(jbus)
|
|
|
|
|
2017-01-07 08:24:16 +00:00
|
|
|
if(WIN32)
|
|
|
|
set(JBUS_PLAT_LIBS Ws2_32)
|
2017-01-07 23:31:23 +00:00
|
|
|
elseif(UNIX AND NOT APPLE)
|
|
|
|
set(JBUS_PLAT_LIBS pthread)
|
2017-01-07 08:24:16 +00:00
|
|
|
endif()
|
|
|
|
|
2017-01-07 03:13:23 +00:00
|
|
|
include_directories(include)
|
|
|
|
add_library(jbus
|
|
|
|
include/jbus/optional.hpp
|
|
|
|
include/jbus/Socket.hpp
|
2017-01-07 05:00:40 +00:00
|
|
|
lib/Common.cpp include/jbus/Common.hpp
|
|
|
|
lib/Endpoint.cpp include/jbus/Endpoint.hpp
|
|
|
|
lib/Listener.cpp include/jbus/Listener.hpp)
|
2017-01-07 08:24:16 +00:00
|
|
|
target_link_libraries(jbus ${JBUS_PLAT_LIBS})
|
|
|
|
|
2017-01-07 03:13:23 +00:00
|
|
|
add_executable(joyboot tools/joyboot.cpp)
|
|
|
|
target_link_libraries(joyboot jbus)
|