aboutsummaryrefslogtreecommitdiff
path: root/test_package/CMakeLists.txt
blob: 4bfe6f51f0108db5a25ca34c9b6807bf97d62399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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"
)