summaryrefslogtreecommitdiffstats
path: root/src/Client/CMakeLists.txt
blob: 6d7ba4c91013627b2ad123b10a29b6d6cc25e793 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
add_subdirectory(Requests)

include_directories(${INCLUDES})

add_library(Client
  Application.cpp Application.h
  CommandParser.cpp CommandParser.h
  InformationManager.cpp InformationManager.h
  SystemCommands.cpp SystemCommands.h
  UserCommands.cpp UserCommands.h
)
target_link_libraries(Client ClientRequests Common)