aboutsummaryrefslogtreecommitdiff
path: root/source/app/wandac/CMakeLists.txt
blob: 43740d134f3928a8db1535534c1dee35cbfd3e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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")