CMakeLists.txt 209 Bytes
Newer Older
1 2 3 4 5

add_library(uas
	UAS.cc
	UAS.h
	UASInterface.h
Daniel Agar's avatar
Daniel Agar committed
6 7
	UASMessageHandler.cc
	UASMessageHandler.h
8 9 10
)

target_link_libraries(uas
11
	PRIVATE
12 13 14
		qgc
)

15
target_include_directories(uas INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
16