diff --git a/CMakeLists.txt b/CMakeLists.txt index 5924afb..7d9a304 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,8 +5,8 @@ include_directories(include) add_library(jbus include/jbus/optional.hpp include/jbus/Socket.hpp - src/Common.cpp include/jbus/Common.hpp - src/Endpoint.cpp include/jbus/Endpoint.hpp - src/Listener.cpp include/jbus/Listener.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) diff --git a/src/Common.cpp b/lib/Common.cpp similarity index 100% rename from src/Common.cpp rename to lib/Common.cpp diff --git a/src/Endpoint.cpp b/lib/Endpoint.cpp similarity index 100% rename from src/Endpoint.cpp rename to lib/Endpoint.cpp diff --git a/src/Listener.cpp b/lib/Listener.cpp similarity index 100% rename from src/Listener.cpp rename to lib/Listener.cpp