mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 09:22:18 +00:00
This enables unfamiliar users to run the tests quickly without having to memorize all commandsline options.
22 lines
467 B
CMake
22 lines
467 B
CMake
cmake_minimum_required(VERSION 3.5.1)
|
|
|
|
find_package(MAVSDK)
|
|
|
|
if (MAVSDK_FOUND)
|
|
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)
|
|
endif()
|