summaryrefslogtreecommitdiffstats
path: root/src/Client
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-06-06 15:01:07 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-06-06 15:01:07 +0200
commit454cfccd51e2b9ad453fe79df04360fcd6eeb742 (patch)
treeb7d7f9026a34a32f36dd696a523533762d03d7d9 /src/Client
parent82949d1a4372c3b9e200c382dc709a09efaa7519 (diff)
downloadmad-454cfccd51e2b9ad453fe79df04360fcd6eeb742.tar
mad-454cfccd51e2b9ad453fe79df04360fcd6eeb742.zip
User-RequestHandler zur UserRequestHandlerGroup zusammengefasst
Diffstat (limited to 'src/Client')
-rw-r--r--src/Client/CMakeLists.txt5
-rw-r--r--src/Client/Requests/CMakeLists.txt5
2 files changed, 8 insertions, 2 deletions
diff --git a/src/Client/CMakeLists.txt b/src/Client/CMakeLists.txt
index 00b72c5..e86a839 100644
--- a/src/Client/CMakeLists.txt
+++ b/src/Client/CMakeLists.txt
@@ -2,5 +2,8 @@ add_subdirectory(Requests)
include_directories(${INCLUDES})
-add_library(Client CommandParser.cpp InformationManager.cpp)
+add_library(Client
+ CommandParser.cpp CommandParser.h
+ InformationManager.cpp InformationManager.h
+)
target_link_libraries(Client ClientRequests Common)
diff --git a/src/Client/Requests/CMakeLists.txt b/src/Client/Requests/CMakeLists.txt
index ef8b275..86acaf5 100644
--- a/src/Client/Requests/CMakeLists.txt
+++ b/src/Client/Requests/CMakeLists.txt
@@ -1,5 +1,8 @@
include_directories(${INCLUDES})
add_library(ClientRequests STATIC
- DaemonCommandRequest.cpp DaemonFSInfoRequest.cpp DaemonStatusRequest.cpp
+ DaemonCommandRequest.cpp DaemonCommandRequest.h
+ DaemonFSInfoRequest.cpp DaemonFSInfoRequest.h
+ DaemonListRequest.h
+ DaemonStatusRequest.cpp DaemonStatusRequest.h
)