From 152c44ffb96143683a7fdaabac1c747aaf6ad0dc Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Thu, 7 Sep 2023 14:36:23 +0200 Subject: apps: split apps into directories --- source/app/wandac/CMakeLists.txt | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 source/app/wandac/CMakeLists.txt (limited to 'source/app/wandac/CMakeLists.txt') diff --git a/source/app/wandac/CMakeLists.txt b/source/app/wandac/CMakeLists.txt new file mode 100644 index 0000000..a9b977c --- /dev/null +++ b/source/app/wandac/CMakeLists.txt @@ -0,0 +1,25 @@ +find_package("lyra") +find_package("spdlog") + +#[=====[ Client ]=====] + +add_executable("wandac" + "src/main.cpp" +) + +target_link_libraries("${PROJECT_NAME}c" PRIVATE + "wanda::control" + "wanda::proto" + "wanda::system" + + "bfg::lyra" + "spdlog::spdlog_header_only" +) + +set_target_properties("wandac" PROPERTIES + CXX_STANDARD_REQUIRED YES + CXX_EXTENSIONS OFF + INTERPROCEDURAL_OPTIMIZATION ${WANDA_IPO_SUPPORTED} +) + +install(TARGETS "wandac") -- cgit v1.2.3