mirror of
https://github.com/BotChain-Robots/control.git
synced 2026-03-09 16:22:26 +01:00
20 lines
391 B
CMake
20 lines
391 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
|
|
project(DisplayExample)
|
|
|
|
set(CMAKE_CXX_STANDARD 23)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
find_package(libcontrol REQUIRED)
|
|
find_package(spdlog REQUIRED)
|
|
find_package(librpc REQUIRED)
|
|
|
|
add_executable(DisplayExample main.cpp)
|
|
|
|
target_link_libraries(DisplayExample
|
|
PRIVATE
|
|
libcontrol::libcontrol
|
|
spdlog::spdlog
|
|
librpc::librpc
|
|
)
|