mirror of
https://github.com/AxioDL/jbus.git
synced 2025-08-05 03:35:42 +00:00
13 lines
411 B
CMake
13 lines
411 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
project(jbus)
|
|
|
|
include_directories(include)
|
|
add_library(jbus
|
|
include/jbus/optional.hpp
|
|
include/jbus/Socket.hpp
|
|
lib/Common.cpp include/jbus/Common.hpp
|
|
lib/Endpoint.cpp include/jbus/Endpoint.hpp
|
|
lib/Listener.cpp include/jbus/Listener.hpp)
|
|
add_executable(joyboot tools/joyboot.cpp)
|
|
target_link_libraries(joyboot jbus)
|