CMakeLists.txt 605 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

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
24
		Qt5::Sql
25 26 27 28 29 30

		qgc
)

target_include_directories(QtLocationPlugin
	INTERFACE
31
		${CMAKE_CURRENT_SOURCE_DIR}
32 33
		QMLControl
)