aboutsummaryrefslogtreecommitdiff
path: root/source/app/wandac/CMakeLists.txt
blob: a9b977c202e03fa96a8a111351fe6a4a9942c15e (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
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")