summaryrefslogtreecommitdiffstats
path: root/src/Client/CMakeLists.txt
blob: 30fb722e62354887b4120f1753946be210f54d67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
include_directories(${INCLUDES})

mad_library(Client
  export.h
  
  Authenticators/ChallengeResponseAuthenticator.h Authenticators/ChallengeResponseAuthenticator.cpp
  Authenticators/PasswordAuthenticator.h Authenticators/PasswordAuthenticator.cpp
  
  Requests/DaemonCommandRequest.h Requests/DaemonCommandRequest.cpp
  Requests/DaemonFSInfoRequest.h Requests/DaemonFSInfoRequest.cpp
  Requests/DaemonListRequest.h
  Requests/DaemonStatusRequest.h Requests/DaemonStatusRequest.cpp
  
  Requests/UserLists/UserListListRequest.h
  Requests/UserLists/UserListDownloadRequest.h Requests/UserLists/UserListDownloadRequest.cpp
  Requests/UserLists/UserListDiffListRequest.h
  
  Application.cpp Application.h
  CommandParser.cpp CommandParser.h
  InformationManager.cpp InformationManager.h
  PasswordReader.cpp PasswordReader.h
  SystemCommands.cpp SystemCommands.h
  UserCommands.cpp UserCommands.h
  UserListCommands.cpp UserListCommands.h
  XLSReader.cpp XLSReader.h
  XLSSheet.cpp XLSSheet.h
)
target_link_libraries(Client Common Net Core)