CMakeLists.txt 603 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 26 27 28 29 30 31 32 33 34

add_library(QtLocationPlugin
	QGCMapEngine.cpp
	QGCMapTileSet.cpp
	QGCMapUrlEngine.cpp
	QGCTileCacheWorker.cpp
	QGeoCodeReplyQGC.cpp
	QGeoCodingManagerEngineQGC.cpp
	QGeoMapReplyQGC.cpp
	QGeoServiceProviderPluginQGC.cpp
	QGeoTiledMappingManagerEngineQGC.cpp
	QGeoTileFetcherQGC.cpp

	QMLControl/QGCMapEngineManager.cc

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

target_link_libraries(QtLocationPlugin
	PUBLIC
		Qt5::Location

		qgc
)

target_include_directories(QtLocationPlugin
	PUBLIC
		${CMAKE_CURRENT_SOURCE_DIR}
	INTERFACE
		QMLControl
)