diff options
author | Sudarsana Babu Nagineni <sudarsana.babu@mapbox.com> | 2019-11-25 16:11:17 +0200 |
---|---|---|
committer | Sudarsana Babu Nagineni <sudarsana.babu@mapbox.com> | 2019-11-26 16:23:36 +0200 |
commit | 0f3eede6a6d10a8e2669ffed967cacdb8def79bf (patch) | |
tree | 3cb0935ebe9096ddf272410ef7bb0cc129f4e5e5 /next | |
parent | 3600dd8a1a4d91290d752d699ed964eab03bb1a5 (diff) | |
download | qtlocation-mapboxgl-0f3eede6a6d10a8e2669ffed967cacdb8def79bf.tar.gz |
[build] Add an option to include platform specific implementation
Add an option to include platform specific implementation sources
to mbgl-core.
Diffstat (limited to 'next')
-rw-r--r-- | next/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/next/CMakeLists.txt b/next/CMakeLists.txt index ba8b0adb63..3828a4023c 100644 --- a/next/CMakeLists.txt +++ b/next/CMakeLists.txt @@ -949,6 +949,10 @@ add_library( Mapbox::Map ALIAS mbgl-core ) +if(MBGL_WITH_PLATFORM_EXTRAS) + include(${MBGL_WITH_PLATFORM_EXTRAS}) +endif() + if(MBGL_WITH_CORE_ONLY) return() elseif(MBGL_WITH_QT) |