aboutsummaryrefslogtreecommitdiff
path: root/test_package
diff options
context:
space:
mode:
Diffstat (limited to 'test_package')
-rw-r--r--test_package/CMakeLists.txt27
-rw-r--r--test_package/conanfile.py26
-rw-r--r--test_package/test.cpp7
3 files changed, 60 insertions, 0 deletions
diff --git a/test_package/CMakeLists.txt b/test_package/CMakeLists.txt
new file mode 100644
index 0000000..4bfe6f5
--- /dev/null
+++ b/test_package/CMakeLists.txt
@@ -0,0 +1,27 @@
+cmake_minimum_required(VERSION "3.27")
+
+project("TestPackage"
+ LANGUAGES CXX
+ DESCRIPTION "Conan test package for 'Wanda!'"
+)
+
+find_package("wanda" REQUIRED
+ COMPONENTS
+ "control"
+ "meta"
+ "proto"
+ "std_ext"
+ "system"
+)
+
+add_executable("test"
+ "test.cpp"
+)
+
+target_link_libraries("test"
+ "wanda::control"
+ "wanda::meta"
+ "wanda::proto"
+ "wanda::std_ext"
+ "wanda::system"
+)
diff --git a/test_package/conanfile.py b/test_package/conanfile.py
new file mode 100644
index 0000000..6c01007
--- /dev/null
+++ b/test_package/conanfile.py
@@ -0,0 +1,26 @@
+import os
+
+from conan import ConanFile
+from conan.tools.cmake import CMake, cmake_layout
+from conan.tools.build import can_run
+
+
+class WandaTestConan(ConanFile):
+ settings = "os", "compiler", "build_type", "arch"
+ generators = "CMakeDeps", "CMakeToolchain"
+
+ def requirements(self):
+ self.requires(self.tested_reference_str)
+
+ def build(self):
+ cmake = CMake(self)
+ cmake.configure()
+ cmake.build()
+
+ def layout(self):
+ cmake_layout(self)
+
+ def test(self):
+ if can_run(self):
+ cmd = os.path.join(self.cpp.build.bindir, "test")
+ self.run(cmd, env="conanrun") \ No newline at end of file
diff --git a/test_package/test.cpp b/test_package/test.cpp
new file mode 100644
index 0000000..168ac09
--- /dev/null
+++ b/test_package/test.cpp
@@ -0,0 +1,7 @@
+#include <wanda/control/commander.hpp>
+#include <wanda/meta/deferred_failure.hpp>
+#include <wanda/proto/version.hpp>
+#include <wanda/std_ext/optional.hpp>
+#include <wanda/system/magic.hpp>
+
+auto main() -> int {} \ No newline at end of file