aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt9
1 files changed, 7 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1d913bc..f9b4906 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -20,12 +20,17 @@ include("ConanDependencies")
include("SystemDependencies")
add_executable("wanda"
+ # Executable
"src/main.cpp"
+
+ # Components
+ "src/deferred_failure.hpp"
+ "src/optional.hpp"
"src/setting.cpp"
"src/setting.hpp"
- "src/variant.cpp"
- "src/variant.hpp"
+ "src/type_wrapper.hpp"
)
+
target_link_libraries("wanda"
"CONAN_PKG::boost_config"
"SYSTEM::GIO"