You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
376 B
25 lines
376 B
|
|
set(EXTRA_SRC) |
|
if(BUILD_TESTING) |
|
list(APPEND EXTRA_SRC |
|
SendMavCommandTest.cc |
|
) |
|
endif() |
|
|
|
add_library(Vehicle |
|
ADSBVehicle.cc |
|
GPSRTKFactGroup.cc |
|
MAVLinkLogManager.cc |
|
MultiVehicleManager.cc |
|
Vehicle.cc |
|
${EXTRA_SRC} |
|
) |
|
|
|
target_link_libraries(Vehicle |
|
PRIVATE |
|
ui |
|
PUBLIC |
|
qgc |
|
) |
|
|
|
target_include_directories(Vehicle INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|