From 2f1c3293d2c5776c4ecd9b2f1dce66492b15dbdd Mon Sep 17 00:00:00 2001 From: Dennis Brentjes Date: Wed, 31 Aug 2016 11:57:15 +0200 Subject: Split up the client and server parts in a separate network library --- node/CMakeLists.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 node/CMakeLists.txt (limited to 'node/CMakeLists.txt') diff --git a/node/CMakeLists.txt b/node/CMakeLists.txt new file mode 100644 index 0000000..895cfb2 --- /dev/null +++ b/node/CMakeLists.txt @@ -0,0 +1,18 @@ +find_package(Boost COMPONENTS system program_options REQUIRED) + +add_executable(node + main.cpp + node.hpp node.cpp +) + +target_compile_options(node + PRIVATE "-std=c++11" +) + +target_link_libraries(node + PRIVATE Boost::boost + PRIVATE Boost::program_options + PRIVATE Boost::system + PRIVATE cmix + PRIVATE cmix-network +) -- cgit v1.2.3-70-g09d2