diff options
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 |
