From 543e91dc65d839864b42114b353d0c30db4dcdd1 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Thu, 29 Nov 2018 23:42:34 +0100 Subject: wanda: begin basic control command --- CMakeLists.txt | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index a8f6d2a..1408ee2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,6 +32,8 @@ add_library("core" OBJECT target_link_libraries("core" "CONAN_PKG::boost_asio" + "SYSTEM::C++FS" + "Threads::Threads" ) add_executable("wandad" @@ -45,16 +47,15 @@ add_executable("wandad" ) target_link_libraries("wandad" - # Internal components "core" - - # Conan dependencies "CONAN_PKG::boost_program_options" - - # System dependencies - "SYSTEM::C++FS" "SYSTEM::GIO" - - # CMake dependencies - "Threads::Threads" ) + +add_executable("wandac" + "src/wandac.cpp" +) + +target_link_libraries("wandac" + "core" +) \ No newline at end of file -- cgit v1.2.3