-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge develop to main for 3.5 release
- Loading branch information
Showing
404 changed files
with
10,219 additions
and
3,480 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
Pod::Spec.new do |s| | ||
s.name = "WhirlyGlobe" | ||
s.version = "3.4" | ||
s.version = "3.5" | ||
s.summary = "WhirlyGlobe-Maply: Geospatial visualization for iOS and Android." | ||
s.description = <<-DESC | ||
WhirlyGlobe-Maply is a high performance geospatial display toolkit for iOS and Android. | ||
|
@@ -20,17 +20,41 @@ Pod::Spec.new do |s| | |
s.license = 'Apache 2.0' | ||
s.author = { "Steve Gifford" => "[email protected]" } | ||
s.social_media_url = 'https://twitter.com/@mousebirdc' | ||
|
||
s.platform = :ios, '12.0' | ||
s.requires_arc = true | ||
s.source = { :git => 'https://github.com/mousebird/WhirlyGlobe.git', :branch => 'topic/xcframework' } | ||
s.module_name = "WhirlyGlobe" | ||
s.default_subspec = "WhirlyGlobe" | ||
s.compiler_flags = "" | ||
|
||
s.source = { :git => 'https://github.com/mousebird/WhirlyGlobe.git', :branch => 'develop' } | ||
|
||
s.compiler_flags = '-D__USE_SDL_GLES__ -D__IPHONEOS__ -DSQLITE_OPEN_READONLY -DHAVE_PTHREAD=1 -DUNORDERED=1 ' | ||
s.xcconfig = { "HEADER_SEARCH_PATHS" => " \"$(SDKROOT)/usr/include/libxml2\" \"$(PODS_ROOT)/KissXML/KissXML/\" \"$(PODS_ROOT)/WhirlyGlobe/common/local_libs/eigen/\" \"${PODS_ROOT}/WhirlyGlobe/common/local_libs/nanopb/\" \"${PODS_ROOT}/WhirlyGlobe/common/local_libs/clipper\" \"${PODS_ROOT}/WhirlyGlobe/common/local_libs/lodepng\" \"${PODS_ROOT}/WhirlyGlobe/common/local_libs/glues/include/\" \"$(PODS_ROOT)/WhirlyGlobe/common/local_libs/GeographicLib/include/\" \"$(PODS_ROOT)/WhirlyGlobe/ios/library/WhirlyGlobe-MaplyComponent/include/private/\" \"$(PODS_ROOT)/WhirlyGlobe/ios/library/WhirlyGlobe-MaplyComponent/include/\" \"$(PODS_ROOT)/WhirlyGlobe/ios/library/WhirlyGlobe-MaplyComponent/include/vector_tiles/\" ", | ||
"MTL_LANGUAGE_REVISION" => "Metal21" } | ||
|
||
s.default_subspec = 'MaplyComponent' | ||
s.pod_target_xcconfig = { | ||
"DEFINES_MODULE" => "YES", | ||
"MTL_LANGUAGE_REVISION" => "Metal21", | ||
"GCC_PREPROCESSOR_DEFINITIONS" => %w( | ||
__USE_SDL_GLES__ | ||
__IPHONEOS__ | ||
SQLITE_OPEN_READONLY | ||
HAVE_PTHREAD=1 | ||
).join(" "), | ||
"HEADER_SEARCH_PATHS" => %w( | ||
"$(SDKROOT)/usr/include/libxml2" | ||
"$(PODS_ROOT)/KissXML/KissXML/" | ||
"${PODS_TARGET_SRCROOT}/common/local_libs/eigen/" | ||
"${PODS_TARGET_SRCROOT}/common/local_libs/nanopb/" | ||
"${PODS_TARGET_SRCROOT}/common/local_libs/clipper" | ||
"${PODS_TARGET_SRCROOT}/common/local_libs/lodepng" | ||
"${PODS_TARGET_SRCROOT}/common/local_libs/glues/include/" | ||
"${PODS_TARGET_SRCROOT}/common/local_libs/GeographicLib/include/" | ||
"${PODS_TARGET_SRCROOT}/ios/library/WhirlyGlobe-MaplyComponent/include/private/" | ||
"${PODS_TARGET_SRCROOT}/ios/library/WhirlyGlobe-MaplyComponent/include/" | ||
"${PODS_TARGET_SRCROOT}/ios/library/WhirlyGlobe-MaplyComponent/include/vector_tiles/" | ||
).join(" "), | ||
# For angle-bracket includes | ||
"SYSTEM_HEADER_SEARCH_PATHS" => %w( | ||
).join(" "), | ||
"CLANG_WARN_DOCUMENTATION_COMMENTS" => "NO", | ||
"GCC_WARN_INHIBIT_ALL_WARNINGS" => "YES" | ||
} | ||
|
||
s.subspec 'locallibs' do |ll| | ||
ll.source_files = | ||
|
@@ -59,27 +83,26 @@ Pod::Spec.new do |s| | |
gl.private_header_files = 'common/local_libs/glues/**/*.h' | ||
end | ||
|
||
s.subspec 'MaplyComponent' do |mc| | ||
s.subspec 'WhirlyGlobe' do |mc| | ||
mc.source_files = | ||
'common/WhirlyGlobeLib/src/*.{c,cpp}', | ||
'common/WhirlyGlobeLib/include/*.h', | ||
'common/WhirlyGlobeLib/include/vector_tile.pb.h', | ||
'ios/library/WhirlyGlobeLib/src/*.{mm,m,cpp,metal}', | ||
'ios/library/WhirlyGlobeLib/include/*.h', | ||
'ios/library/WhirlyGlobe-MaplyComponent/include/**/*.h', | ||
'ios/library/WhirlyGlobe-MaplyComponent/src/**/*.{mm,m,cpp,metal}', | ||
'ios/library/WhirlyGlobe-MaplyComponent/include/MaplyBridge.h' | ||
mc.preserve_paths = | ||
'common/local_libs/eigen/Eigen/**' | ||
'ios/library/WhirlyGlobe-MaplyComponent/WhirlyGlobeMaplyComponent/*.h' | ||
mc.exclude_files = | ||
'common/WhirlyGlobeLib/src/*GLES.{h,cpp}', | ||
'ios/library/WhirlyGlobeLib/src/Texture_iOS.mm', | ||
'ios/library/WhirlyGlobeLib/include/TextureGLES_iOS.h' | ||
mc.public_header_files = | ||
'common/WhirlyGlobeLib/include/*.h', | ||
'ios/library/WhirlyGlobe-MaplyComponent/include/*.h', | ||
"ios/library/WhirlyGlobe-MaplyComponent/include/vector_tiles/*.h", | ||
'ios/library/WhirlyGlobeLib/include/GeographicLib.h' # That we have to name it here means it probably belongs somewhere else... | ||
'ios/library/WhirlyGlobe-MaplyComponent/include/**/*.h', | ||
'ios/library/WhirlyGlobe-MaplyComponent/WhirlyGlobeMaplyComponent/*.h' | ||
mc.private_header_files = | ||
'common/WhirlyGlobeLib/include/vector_tile.pb.h', | ||
'common/WhirlyGlobeLib/include/**/*.h', | ||
'ios/library/WhirlyGlobeLib/include/*.h', | ||
'ios/library/WhirlyGlobe-MaplyComponent/include/MaplyBridge.h' | ||
'ios/library/WhirlyGlobe-MaplyComponent/include/private/*.h' | ||
mc.dependency 'WhirlyGlobe/locallibs' | ||
mc.dependency 'WhirlyGlobe/glues' | ||
mc.dependency 'SMCalloutView' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
**/local.properties | ||
library/Android/.gradle | ||
library/maply/.cxx | ||
library/maply/\.externalNativeBuild/ | ||
apps/AutoTesterAndroid/app/release/ | ||
library/maply/.cxx/ | ||
apps/AutoTesterAndroid/app/gradle/wrapper/ | ||
apps/AutoTesterAndroid/app/gradlew | ||
apps/AutoTesterAndroid/app/gradlew.bat | ||
library/Android/build/ | ||
library/Android/libs/ | ||
library/Android/obj/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.