diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2018-11-29 18:29:34 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2018-11-29 18:29:34 +0100 |
| commit | ca992f4f76d09965e4e62c805daa02b23266a224 (patch) | |
| tree | 07eaeae4e288832306c353dd46cd3c2e52b8b5db /CMakeLists.txt | |
| parent | d018603b1ff8e93902e8c9c904199f54076154c4 (diff) | |
| download | wanda-ca992f4f76d09965e4e62c805daa02b23266a224.tar.xz wanda-ca992f4f76d09965e4e62c805daa02b23266a224.zip | |
control: begin control interface implementation
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e82b59e..d90fecc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,9 +24,14 @@ add_executable("wanda" "src/main.cpp" # Components + "src/control_connection.cpp" + "src/control_connection.hpp" + "src/control_interface.cpp" + "src/control_interface.hpp" "src/deferred_failure.hpp" "src/filesystem.cpp" "src/filesystem.hpp" + "src/keyed.hpp" "src/optional.hpp" "src/setting.cpp" "src/setting.hpp" @@ -34,7 +39,10 @@ add_executable("wanda" ) target_link_libraries("wanda" + "CONAN_PKG::boost_asio" "CONAN_PKG::boost_config" + "CONAN_PKG::boost_program_options" "SYSTEM::C++FS" "SYSTEM::GIO" + "Threads::Threads" ) |
