CMakeLists.txt 352 Bytes
Newer Older
1

2 3 4
add_subdirectory(MapItems)
add_subdirectory(Widgets)

5
add_library(FlightMap
6
	#Widgets/ValuesWidgetController.cc
7 8 9
)

target_link_libraries(FlightMap
10
	PRIVATE
11 12 13 14 15 16 17 18 19 20
		qgc
)

target_include_directories(FlightMap
	PUBLIC
		${CMAKE_CURRENT_SOURCE_DIR}
	INTERFACE
		Widgets
	)

21 22 23
add_custom_target(FligthMapQml
	FlightMap.qml
	MapScale.qml
Daniel Agar's avatar
Daniel Agar committed
24
	QGCVideoBackground.qml
25
)