blob: dfcaeb349822e8cc5139b8b9ce745410f0c60b14 (
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
|
find_package("lyra")
find_package("spdlog")
add_executable("wandad"
"src/main.cpp"
)
target_link_libraries("wandad" PRIVATE
"wanda::control"
"wanda::proto"
"wanda::std_ext"
"wanda::system"
"bfg::lyra"
"spdlog::spdlog_header_only"
)
set_target_properties("wandad" PROPERTIES
CXX_STANDARD_REQUIRED YES
CXX_EXTENSIONS OFF
INTERPROCEDURAL_OPTIMIZATION ${WANDA_IPO_SUPPORTED}
)
install(TARGETS "wandad")
|