CMakeLists.txt 756 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 24 25

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
	QGCJSBSimLink.cc
	QGCMAVLink.cc
	QGCSerialPortInfo.cc
	QGCXPlaneLink.cc
	SerialLink.cc
	TCPLink.cc
	UDPLink.cc
Willian Galvani's avatar
Willian Galvani committed
26
	UdpIODevice.cc
27 28 29 30 31 32 33 34 35 36

	${EXTRA_SRC}

	# HEADERS
	# shouldn't be listed here, but aren't named properly for AUTOMOC
	QGCHilLink.h
	QGCJSBSimLink.h
)

target_link_libraries(comm
37 38
	PRIVATE
		qgc
39 40 41
	PUBLIC
		Qt5::Location
		Qt5::SerialPort
42
		Qt5::Test
43 44 45 46
		Qt5::TextToSpeech
		Qt5::Widgets
)

47
target_include_directories(comm INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
48