diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2023-08-17 12:32:50 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2023-08-17 12:32:50 +0200 |
| commit | 375799fa79d1af76f33299acc20a11a167a021f8 (patch) | |
| tree | 8f91b982ec96225c33a2f4871730ababffe5cab0 /test_package/CMakeLists.txt | |
| parent | af471b9b780869915d3217b228e24d025892de47 (diff) | |
| download | wanda-375799fa79d1af76f33299acc20a11a167a021f8.tar.xz wanda-375799fa79d1af76f33299acc20a11a167a021f8.zip | |
project: restructure libraries and build env
Diffstat (limited to 'test_package/CMakeLists.txt')
| -rw-r--r-- | test_package/CMakeLists.txt | 27 |
1 files changed, 27 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" +) |
