-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
39 lines (36 loc) · 1.44 KB
/
Copy pathCMakeLists.txt
File metadata and controls
39 lines (36 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# ============================================================================
# Vehicle Unit Tests
# Tests for vehicle connection, FTP, MAVLink commands, and link management
# ============================================================================
target_sources(${CMAKE_PROJECT_NAME}
PRIVATE
FTPManagerTest.cc
FTPManagerTest.h
FTPControllerTest.cc
FTPControllerTest.h
FirmwareUpgradeControllerTest.cc
FirmwareUpgradeControllerTest.h
InitialConnectTest.cc
InitialConnectTest.h
InitialConnectPeripheralStartupTest.cc
InitialConnectPeripheralStartupTest.h
MAVLinkLogManagerTest.cc
MAVLinkLogManagerTest.h
APMAirframeComponentControllerTest.cc
APMAirframeComponentControllerTest.h
RemoteIDManagerTest.cc
RemoteIDManagerTest.h
RequestMessageTest.cc
RequestMessageTest.h
SendMavCommandWithHandlerTest.cc
SendMavCommandWithHandlerTest.h
SendMavCommandWithSignallingTest.cc
SendMavCommandWithSignallingTest.h
VehicleLinkManagerTest.cc
VehicleLinkManagerTest.h
)
target_include_directories(${CMAKE_PROJECT_NAME} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
# ----------------------------------------------------------------------------
# Component Information Tests
# ----------------------------------------------------------------------------
add_subdirectory(ComponentInformation)