CMakeLists.txt 283 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13

add_library(uas
	FileManager.cc
	UAS.cc
	UASMessageHandler.cc

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

target_link_libraries(uas
14
	PRIVATE
15 16 17
		qgc
)

18
target_include_directories(uas INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
19