From 375799fa79d1af76f33299acc20a11a167a021f8 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Thu, 17 Aug 2023 12:32:50 +0200 Subject: project: restructure libraries and build env --- test_package/CMakeLists.txt | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 test_package/CMakeLists.txt (limited to 'test_package/CMakeLists.txt') 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" +) -- cgit v1.2.3