diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2018-11-29 23:42:34 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2018-11-29 23:42:34 +0100 |
| commit | 543e91dc65d839864b42114b353d0c30db4dcdd1 (patch) | |
| tree | d28b5c83adb4e5ff7aa027c5c0ce32d197e762c2 /CMakeLists.txt | |
| parent | c307f09ca63f5dd609be0b3f1c077cd3bc1a9266 (diff) | |
| download | wanda-543e91dc65d839864b42114b353d0c30db4dcdd1.tar.xz wanda-543e91dc65d839864b42114b353d0c30db4dcdd1.zip | |
wanda: begin basic control command
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 19 |
1 files changed, 10 insertions, 9 deletions
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 |
