aboutsummaryrefslogtreecommitdiff
path: root/network-handler/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'network-handler/CMakeLists.txt')
-rw-r--r--network-handler/CMakeLists.txt13
1 files changed, 1 insertions, 12 deletions
diff --git a/network-handler/CMakeLists.txt b/network-handler/CMakeLists.txt
index b4aef97..072172e 100644
--- a/network-handler/CMakeLists.txt
+++ b/network-handler/CMakeLists.txt
@@ -3,13 +3,8 @@ find_package(Boost COMPONENTS system program_options REQUIRED)
add_executable(network-handler
main.cpp
- acceptor.hpp acceptor.cpp
- server.hpp server.cpp
networkhandler.hpp networkhandler.cpp
- node.hpp node.cpp
- client.hpp client.cpp
userclient.hpp userclient.cpp
- nodeclient.hpp nodeclient.cpp
nodemanager.hpp nodemanager.cpp
)
@@ -22,11 +17,5 @@ target_link_libraries(network-handler
PRIVATE Boost::program_options
PRIVATE Boost::system
PRIVATE cmix
+ PRIVATE cmix-network
)
-
-if(WIN32)
- target_link_libraries(network-handler
- PRIVATE wsock32
- PRIVATE ws2_32
- )
-endif()