CMakeLists.txt 210 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

add_library(FlightMap
	Widgets/ValuesWidgetController.cc
)

target_link_libraries(FlightMap
	PUBLIC
		qgc
)

target_include_directories(FlightMap
	PUBLIC
		${CMAKE_CURRENT_SOURCE_DIR}
	INTERFACE
		Widgets
	)