mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
20 lines
398 B
CMake
20 lines
398 B
CMake
cmake_minimum_required(VERSION 3.5.1)
|
|
|
|
find_package(MAVSDK REQUIRED)
|
|
|
|
add_executable(mavsdk_tests
|
|
test_main.cpp
|
|
autopilot_tester.cpp
|
|
test_mission_multicopter.cpp
|
|
)
|
|
|
|
target_link_libraries(mavsdk_tests
|
|
MAVSDK::mavsdk
|
|
MAVSDK::mavsdk_action
|
|
MAVSDK::mavsdk_mission
|
|
MAVSDK::mavsdk_telemetry
|
|
)
|
|
|
|
target_compile_options(mavsdk_tests
|
|
PRIVATE -std=c++17 -Wall -Wextra -Werror)
|