CMakeLists.txt 610 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23

set(EXTRA_SRC)
if(BUILD_TESTING)
	list(APPEND EXTRA_SRC
		MockLink.cc
		MockLinkFileServer.cc
		MockLinkMissionItemHandler.cc
	)
endif()

add_library(comm
	#BluetoothLink.cc
	LinkConfiguration.cc
	LinkInterface.cc
	LinkManager.cc
	LogReplayLink.cc
	MavlinkMessagesTimer.cc
	MAVLinkProtocol.cc
	QGCMAVLink.cc
	QGCSerialPortInfo.cc
	SerialLink.cc
	TCPLink.cc
	UDPLink.cc
Willian Galvani's avatar
Willian Galvani committed
24
	UdpIODevice.cc
25 26 27 28 29

	${EXTRA_SRC}
)

target_link_libraries(comm
30 31
	PRIVATE
		qgc
32 33 34
	PUBLIC
		Qt5::Location
		Qt5::SerialPort
35
		Qt5::Test
36 37 38 39
		Qt5::TextToSpeech
		Qt5::Widgets
)

40
target_include_directories(comm INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
41