From 9b2b1fd1e6a988a88c15c8cb7594be37c77f619e Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Fri, 6 Jan 2017 19:00:40 -1000 Subject: [PATCH] Use /lib rather than /src --- CMakeLists.txt | 6 +++--- {src => lib}/Common.cpp | 0 {src => lib}/Endpoint.cpp | 0 {src => lib}/Listener.cpp | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename {src => lib}/Common.cpp (100%) rename {src => lib}/Endpoint.cpp (100%) rename {src => lib}/Listener.cpp (100%) 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