@cpp.js/package-proj 1.0.0-beta.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +34 -0
- package/README.md +47 -0
- package/cppjs-package-proj.podspec +14 -0
- package/cppjs.build.js +11 -0
- package/cppjs.config.js +54 -0
- package/dist/prebuilt/Android-arm64-v8a/include/geodesic.h +837 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/common.hpp +489 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/coordinateoperation.hpp +2129 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/coordinates.hpp +115 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/coordinatesystem.hpp +892 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/crs.hpp +1591 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/datum.hpp +860 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/io.hpp +1389 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/metadata.hpp +470 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/nn.hpp +385 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/util.hpp +781 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj.h +2214 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj_constants.h +836 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj_experimental.h +52 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj_symbol_rename.h +428 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj/proj-config-version.cmake +52 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj/proj-config.cmake +79 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj/proj-targets.cmake +106 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj/proj4-targets.cmake +106 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj4/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj4/proj-targets.cmake +106 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj4/proj4-config-version.cmake +52 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj4/proj4-config.cmake +79 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj4/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj4/proj4-targets.cmake +106 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/libproj.so +0 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/pkgconfig/proj.pc +14 -0
- package/dist/prebuilt/Android-arm64-v8a/share/doc/proj/AUTHORS +42 -0
- package/dist/prebuilt/Android-arm64-v8a/share/doc/proj/COPYING +34 -0
- package/dist/prebuilt/Android-arm64-v8a/share/doc/proj/NEWS +3170 -0
- package/dist/prebuilt/Android-arm64-v8a/share/man/man1/cct.1 +370 -0
- package/dist/prebuilt/Android-arm64-v8a/share/man/man1/cs2cs.1 +537 -0
- package/dist/prebuilt/Android-arm64-v8a/share/man/man1/geod.1 +263 -0
- package/dist/prebuilt/Android-arm64-v8a/share/man/man1/gie.1 +524 -0
- package/dist/prebuilt/Android-arm64-v8a/share/man/man1/proj.1 +326 -0
- package/dist/prebuilt/Android-arm64-v8a/share/man/man1/projinfo.1 +853 -0
- package/dist/prebuilt/Android-arm64-v8a/share/man/man1/projsync.1 +227 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/CH +22 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/GL27 +23 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/ITRF2000 +24 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/ITRF2008 +94 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/ITRF2014 +55 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/deformation_model.schema.json +582 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/nad.lst +142 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/nad27 +810 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/nad83 +745 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/other.extra +53 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/proj.db +0 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/proj.ini +51 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/projjson.schema.json +1174 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/triangulation.schema.json +214 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/world +214 -0
- package/dist/prebuilt/CMakeLists.txt +44 -0
- package/dist/prebuilt/Emscripten-x86_64/include/geodesic.h +837 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/common.hpp +489 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/coordinateoperation.hpp +2129 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/coordinates.hpp +115 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/coordinatesystem.hpp +892 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/crs.hpp +1591 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/datum.hpp +860 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/io.hpp +1389 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/metadata.hpp +470 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/nn.hpp +385 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/util.hpp +781 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj.h +2214 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj_constants.h +836 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj_experimental.h +52 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj_symbol_rename.h +428 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj/proj-config-version.cmake +52 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj/proj-config.cmake +79 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj/proj-targets.cmake +107 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj/proj4-targets.cmake +107 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj4/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj4/proj-targets.cmake +107 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj4/proj4-config-version.cmake +52 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj4/proj4-config.cmake +79 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj4/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj4/proj4-targets.cmake +107 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/libproj.a +0 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/pkgconfig/proj.pc +14 -0
- package/dist/prebuilt/Emscripten-x86_64/share/doc/proj/AUTHORS +42 -0
- package/dist/prebuilt/Emscripten-x86_64/share/doc/proj/COPYING +34 -0
- package/dist/prebuilt/Emscripten-x86_64/share/doc/proj/NEWS +3170 -0
- package/dist/prebuilt/Emscripten-x86_64/share/man/man1/cct.1 +370 -0
- package/dist/prebuilt/Emscripten-x86_64/share/man/man1/cs2cs.1 +537 -0
- package/dist/prebuilt/Emscripten-x86_64/share/man/man1/geod.1 +263 -0
- package/dist/prebuilt/Emscripten-x86_64/share/man/man1/gie.1 +524 -0
- package/dist/prebuilt/Emscripten-x86_64/share/man/man1/proj.1 +326 -0
- package/dist/prebuilt/Emscripten-x86_64/share/man/man1/projinfo.1 +853 -0
- package/dist/prebuilt/Emscripten-x86_64/share/man/man1/projsync.1 +227 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/CH +22 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/GL27 +23 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/ITRF2000 +24 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/ITRF2008 +94 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/ITRF2014 +55 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/deformation_model.schema.json +582 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/nad.lst +142 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/nad27 +810 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/nad83 +745 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/other.extra +53 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/proj.db +0 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/proj.ini +51 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/projjson.schema.json +1174 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/triangulation.schema.json +214 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/world +214 -0
- package/dist/prebuilt/iOS-iphoneos/include/geodesic.h +837 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/common.hpp +489 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/coordinateoperation.hpp +2129 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/coordinates.hpp +115 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/coordinatesystem.hpp +892 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/crs.hpp +1591 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/datum.hpp +860 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/io.hpp +1389 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/metadata.hpp +470 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/nn.hpp +385 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/util.hpp +781 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj.h +2214 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj_constants.h +836 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj_experimental.h +52 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj_symbol_rename.h +428 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj/proj-config-version.cmake +52 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj/proj-config.cmake +79 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj/proj-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj/proj4-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj4/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj4/proj-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj4/proj4-config-version.cmake +52 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj4/proj4-config.cmake +79 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj4/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj4/proj4-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphoneos/lib/libproj.a +0 -0
- package/dist/prebuilt/iOS-iphoneos/lib/pkgconfig/proj.pc +14 -0
- package/dist/prebuilt/iOS-iphoneos/share/doc/proj/AUTHORS +42 -0
- package/dist/prebuilt/iOS-iphoneos/share/doc/proj/COPYING +34 -0
- package/dist/prebuilt/iOS-iphoneos/share/doc/proj/NEWS +3170 -0
- package/dist/prebuilt/iOS-iphoneos/share/man/man1/cct.1 +370 -0
- package/dist/prebuilt/iOS-iphoneos/share/man/man1/cs2cs.1 +537 -0
- package/dist/prebuilt/iOS-iphoneos/share/man/man1/geod.1 +263 -0
- package/dist/prebuilt/iOS-iphoneos/share/man/man1/gie.1 +524 -0
- package/dist/prebuilt/iOS-iphoneos/share/man/man1/proj.1 +326 -0
- package/dist/prebuilt/iOS-iphoneos/share/man/man1/projinfo.1 +853 -0
- package/dist/prebuilt/iOS-iphoneos/share/man/man1/projsync.1 +227 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/CH +22 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/GL27 +23 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/ITRF2000 +24 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/ITRF2008 +94 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/ITRF2014 +55 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/deformation_model.schema.json +582 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/nad.lst +142 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/nad27 +810 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/nad83 +745 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/other.extra +53 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/proj.db +0 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/proj.ini +51 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/projjson.schema.json +1174 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/triangulation.schema.json +214 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/world +214 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/geodesic.h +837 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/common.hpp +489 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/coordinateoperation.hpp +2129 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/coordinates.hpp +115 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/coordinatesystem.hpp +892 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/crs.hpp +1591 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/datum.hpp +860 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/io.hpp +1389 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/metadata.hpp +470 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/nn.hpp +385 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/util.hpp +781 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj.h +2214 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj_constants.h +836 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj_experimental.h +52 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj_symbol_rename.h +428 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj/proj-config-version.cmake +52 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj/proj-config.cmake +79 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj/proj-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj/proj4-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj4/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj4/proj-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj4/proj4-config-version.cmake +52 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj4/proj4-config.cmake +79 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj4/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj4/proj4-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/libproj.a +0 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/pkgconfig/proj.pc +14 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/doc/proj/AUTHORS +42 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/doc/proj/COPYING +34 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/doc/proj/NEWS +3170 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/man/man1/cct.1 +370 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/man/man1/cs2cs.1 +537 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/man/man1/geod.1 +263 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/man/man1/gie.1 +524 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/man/man1/proj.1 +326 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/man/man1/projinfo.1 +853 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/man/man1/projsync.1 +227 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/CH +22 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/GL27 +23 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/ITRF2000 +24 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/ITRF2008 +94 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/ITRF2014 +55 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/deformation_model.schema.json +582 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/nad.lst +142 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/nad27 +810 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/nad83 +745 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/other.extra +53 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/proj.db +0 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/proj.ini +51 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/projjson.schema.json +1174 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/triangulation.schema.json +214 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/world +214 -0
- package/dist/prebuilt/proj.xcframework/Info.plist +50 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/geodesic.h +837 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/common.hpp +489 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/coordinateoperation.hpp +2129 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/coordinates.hpp +115 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/coordinatesystem.hpp +892 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/crs.hpp +1591 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/datum.hpp +860 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/io.hpp +1389 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/metadata.hpp +470 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/nn.hpp +385 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/util.hpp +781 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj.h +2214 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj_constants.h +836 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj_experimental.h +52 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj_symbol_rename.h +428 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/libproj.a +0 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/geodesic.h +837 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/common.hpp +489 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/coordinateoperation.hpp +2129 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/coordinates.hpp +115 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/coordinatesystem.hpp +892 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/crs.hpp +1591 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/datum.hpp +860 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/io.hpp +1389 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/metadata.hpp +470 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/nn.hpp +385 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/util.hpp +781 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj.h +2214 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj_constants.h +836 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj_experimental.h +52 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj_symbol_rename.h +428 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/libproj.a +0 -0
- package/package.json +32 -0
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# Generated by CMake
|
|
2
|
+
|
|
3
|
+
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
|
|
4
|
+
message(FATAL_ERROR "CMake >= 2.8.3 required")
|
|
5
|
+
endif()
|
|
6
|
+
if(CMAKE_VERSION VERSION_LESS "2.8.3")
|
|
7
|
+
message(FATAL_ERROR "CMake >= 2.8.3 required")
|
|
8
|
+
endif()
|
|
9
|
+
cmake_policy(PUSH)
|
|
10
|
+
cmake_policy(VERSION 2.8.3...3.29)
|
|
11
|
+
#----------------------------------------------------------------
|
|
12
|
+
# Generated CMake target import file.
|
|
13
|
+
#----------------------------------------------------------------
|
|
14
|
+
|
|
15
|
+
# Commands may need to know the format version.
|
|
16
|
+
set(CMAKE_IMPORT_FILE_VERSION 1)
|
|
17
|
+
|
|
18
|
+
# Protect against multiple inclusion, which would fail when already imported targets are added once more.
|
|
19
|
+
set(_cmake_targets_defined "")
|
|
20
|
+
set(_cmake_targets_not_defined "")
|
|
21
|
+
set(_cmake_expected_targets "")
|
|
22
|
+
foreach(_cmake_expected_target IN ITEMS PROJ::proj)
|
|
23
|
+
list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
|
|
24
|
+
if(TARGET "${_cmake_expected_target}")
|
|
25
|
+
list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
|
|
26
|
+
else()
|
|
27
|
+
list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}")
|
|
28
|
+
endif()
|
|
29
|
+
endforeach()
|
|
30
|
+
unset(_cmake_expected_target)
|
|
31
|
+
if(_cmake_targets_defined STREQUAL _cmake_expected_targets)
|
|
32
|
+
unset(_cmake_targets_defined)
|
|
33
|
+
unset(_cmake_targets_not_defined)
|
|
34
|
+
unset(_cmake_expected_targets)
|
|
35
|
+
unset(CMAKE_IMPORT_FILE_VERSION)
|
|
36
|
+
cmake_policy(POP)
|
|
37
|
+
return()
|
|
38
|
+
endif()
|
|
39
|
+
if(NOT _cmake_targets_defined STREQUAL "")
|
|
40
|
+
string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}")
|
|
41
|
+
string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}")
|
|
42
|
+
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n")
|
|
43
|
+
endif()
|
|
44
|
+
unset(_cmake_targets_defined)
|
|
45
|
+
unset(_cmake_targets_not_defined)
|
|
46
|
+
unset(_cmake_expected_targets)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
# Compute the installation prefix relative to this file.
|
|
50
|
+
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
51
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
52
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
53
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
54
|
+
if(_IMPORT_PREFIX STREQUAL "/")
|
|
55
|
+
set(_IMPORT_PREFIX "")
|
|
56
|
+
endif()
|
|
57
|
+
|
|
58
|
+
# Create imported target PROJ::proj
|
|
59
|
+
add_library(PROJ::proj SHARED IMPORTED)
|
|
60
|
+
|
|
61
|
+
set_target_properties(PROJ::proj PROPERTIES
|
|
62
|
+
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
|
63
|
+
)
|
|
64
|
+
|
|
65
|
+
# Load information for each installed configuration.
|
|
66
|
+
file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/proj-targets-*.cmake")
|
|
67
|
+
foreach(_cmake_config_file IN LISTS _cmake_config_files)
|
|
68
|
+
include("${_cmake_config_file}")
|
|
69
|
+
endforeach()
|
|
70
|
+
unset(_cmake_config_file)
|
|
71
|
+
unset(_cmake_config_files)
|
|
72
|
+
|
|
73
|
+
# Cleanup temporary variables.
|
|
74
|
+
set(_IMPORT_PREFIX)
|
|
75
|
+
|
|
76
|
+
# Loop over all imported files and verify that they actually exist
|
|
77
|
+
foreach(_cmake_target IN LISTS _cmake_import_check_targets)
|
|
78
|
+
if(CMAKE_VERSION VERSION_LESS "3.28"
|
|
79
|
+
OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target}
|
|
80
|
+
OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}")
|
|
81
|
+
foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}")
|
|
82
|
+
if(NOT EXISTS "${_cmake_file}")
|
|
83
|
+
message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file
|
|
84
|
+
\"${_cmake_file}\"
|
|
85
|
+
but this file does not exist. Possible reasons include:
|
|
86
|
+
* The file was deleted, renamed, or moved to another location.
|
|
87
|
+
* An install or uninstall procedure did not complete successfully.
|
|
88
|
+
* The installation package was faulty and contained
|
|
89
|
+
\"${CMAKE_CURRENT_LIST_FILE}\"
|
|
90
|
+
but not all the files it references.
|
|
91
|
+
")
|
|
92
|
+
endif()
|
|
93
|
+
endforeach()
|
|
94
|
+
endif()
|
|
95
|
+
unset(_cmake_file)
|
|
96
|
+
unset("_cmake_import_check_files_for_${_cmake_target}")
|
|
97
|
+
endforeach()
|
|
98
|
+
unset(_cmake_target)
|
|
99
|
+
unset(_cmake_import_check_targets)
|
|
100
|
+
|
|
101
|
+
# This file does not depend on other imported targets which have
|
|
102
|
+
# been exported from the same project but in a separate export set.
|
|
103
|
+
|
|
104
|
+
# Commands beyond this point should not need to know the version.
|
|
105
|
+
set(CMAKE_IMPORT_FILE_VERSION)
|
|
106
|
+
cmake_policy(POP)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#----------------------------------------------------------------
|
|
2
|
+
# Generated CMake target import file for configuration "Release".
|
|
3
|
+
#----------------------------------------------------------------
|
|
4
|
+
|
|
5
|
+
# Commands may need to know the format version.
|
|
6
|
+
set(CMAKE_IMPORT_FILE_VERSION 1)
|
|
7
|
+
|
|
8
|
+
# Import target "PROJ4::proj" for configuration "Release"
|
|
9
|
+
set_property(TARGET PROJ4::proj APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
|
|
10
|
+
set_target_properties(PROJ4::proj PROPERTIES
|
|
11
|
+
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libproj.so"
|
|
12
|
+
IMPORTED_SONAME_RELEASE "libproj.so"
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
list(APPEND _cmake_import_check_targets PROJ4::proj )
|
|
16
|
+
list(APPEND _cmake_import_check_files_for_PROJ4::proj "${_IMPORT_PREFIX}/lib/libproj.so" )
|
|
17
|
+
|
|
18
|
+
# Commands beyond this point should not need to know the version.
|
|
19
|
+
set(CMAKE_IMPORT_FILE_VERSION)
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# Generated by CMake
|
|
2
|
+
|
|
3
|
+
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
|
|
4
|
+
message(FATAL_ERROR "CMake >= 2.8.3 required")
|
|
5
|
+
endif()
|
|
6
|
+
if(CMAKE_VERSION VERSION_LESS "2.8.3")
|
|
7
|
+
message(FATAL_ERROR "CMake >= 2.8.3 required")
|
|
8
|
+
endif()
|
|
9
|
+
cmake_policy(PUSH)
|
|
10
|
+
cmake_policy(VERSION 2.8.3...3.29)
|
|
11
|
+
#----------------------------------------------------------------
|
|
12
|
+
# Generated CMake target import file.
|
|
13
|
+
#----------------------------------------------------------------
|
|
14
|
+
|
|
15
|
+
# Commands may need to know the format version.
|
|
16
|
+
set(CMAKE_IMPORT_FILE_VERSION 1)
|
|
17
|
+
|
|
18
|
+
# Protect against multiple inclusion, which would fail when already imported targets are added once more.
|
|
19
|
+
set(_cmake_targets_defined "")
|
|
20
|
+
set(_cmake_targets_not_defined "")
|
|
21
|
+
set(_cmake_expected_targets "")
|
|
22
|
+
foreach(_cmake_expected_target IN ITEMS PROJ4::proj)
|
|
23
|
+
list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
|
|
24
|
+
if(TARGET "${_cmake_expected_target}")
|
|
25
|
+
list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
|
|
26
|
+
else()
|
|
27
|
+
list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}")
|
|
28
|
+
endif()
|
|
29
|
+
endforeach()
|
|
30
|
+
unset(_cmake_expected_target)
|
|
31
|
+
if(_cmake_targets_defined STREQUAL _cmake_expected_targets)
|
|
32
|
+
unset(_cmake_targets_defined)
|
|
33
|
+
unset(_cmake_targets_not_defined)
|
|
34
|
+
unset(_cmake_expected_targets)
|
|
35
|
+
unset(CMAKE_IMPORT_FILE_VERSION)
|
|
36
|
+
cmake_policy(POP)
|
|
37
|
+
return()
|
|
38
|
+
endif()
|
|
39
|
+
if(NOT _cmake_targets_defined STREQUAL "")
|
|
40
|
+
string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}")
|
|
41
|
+
string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}")
|
|
42
|
+
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n")
|
|
43
|
+
endif()
|
|
44
|
+
unset(_cmake_targets_defined)
|
|
45
|
+
unset(_cmake_targets_not_defined)
|
|
46
|
+
unset(_cmake_expected_targets)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
# Compute the installation prefix relative to this file.
|
|
50
|
+
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
51
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
52
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
53
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
54
|
+
if(_IMPORT_PREFIX STREQUAL "/")
|
|
55
|
+
set(_IMPORT_PREFIX "")
|
|
56
|
+
endif()
|
|
57
|
+
|
|
58
|
+
# Create imported target PROJ4::proj
|
|
59
|
+
add_library(PROJ4::proj SHARED IMPORTED)
|
|
60
|
+
|
|
61
|
+
set_target_properties(PROJ4::proj PROPERTIES
|
|
62
|
+
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
|
63
|
+
)
|
|
64
|
+
|
|
65
|
+
# Load information for each installed configuration.
|
|
66
|
+
file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/proj4-targets-*.cmake")
|
|
67
|
+
foreach(_cmake_config_file IN LISTS _cmake_config_files)
|
|
68
|
+
include("${_cmake_config_file}")
|
|
69
|
+
endforeach()
|
|
70
|
+
unset(_cmake_config_file)
|
|
71
|
+
unset(_cmake_config_files)
|
|
72
|
+
|
|
73
|
+
# Cleanup temporary variables.
|
|
74
|
+
set(_IMPORT_PREFIX)
|
|
75
|
+
|
|
76
|
+
# Loop over all imported files and verify that they actually exist
|
|
77
|
+
foreach(_cmake_target IN LISTS _cmake_import_check_targets)
|
|
78
|
+
if(CMAKE_VERSION VERSION_LESS "3.28"
|
|
79
|
+
OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target}
|
|
80
|
+
OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}")
|
|
81
|
+
foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}")
|
|
82
|
+
if(NOT EXISTS "${_cmake_file}")
|
|
83
|
+
message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file
|
|
84
|
+
\"${_cmake_file}\"
|
|
85
|
+
but this file does not exist. Possible reasons include:
|
|
86
|
+
* The file was deleted, renamed, or moved to another location.
|
|
87
|
+
* An install or uninstall procedure did not complete successfully.
|
|
88
|
+
* The installation package was faulty and contained
|
|
89
|
+
\"${CMAKE_CURRENT_LIST_FILE}\"
|
|
90
|
+
but not all the files it references.
|
|
91
|
+
")
|
|
92
|
+
endif()
|
|
93
|
+
endforeach()
|
|
94
|
+
endif()
|
|
95
|
+
unset(_cmake_file)
|
|
96
|
+
unset("_cmake_import_check_files_for_${_cmake_target}")
|
|
97
|
+
endforeach()
|
|
98
|
+
unset(_cmake_target)
|
|
99
|
+
unset(_cmake_import_check_targets)
|
|
100
|
+
|
|
101
|
+
# This file does not depend on other imported targets which have
|
|
102
|
+
# been exported from the same project but in a separate export set.
|
|
103
|
+
|
|
104
|
+
# Commands beyond this point should not need to know the version.
|
|
105
|
+
set(CMAKE_IMPORT_FILE_VERSION)
|
|
106
|
+
cmake_policy(POP)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#----------------------------------------------------------------
|
|
2
|
+
# Generated CMake target import file for configuration "Release".
|
|
3
|
+
#----------------------------------------------------------------
|
|
4
|
+
|
|
5
|
+
# Commands may need to know the format version.
|
|
6
|
+
set(CMAKE_IMPORT_FILE_VERSION 1)
|
|
7
|
+
|
|
8
|
+
# Import target "PROJ::proj" for configuration "Release"
|
|
9
|
+
set_property(TARGET PROJ::proj APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
|
|
10
|
+
set_target_properties(PROJ::proj PROPERTIES
|
|
11
|
+
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libproj.so"
|
|
12
|
+
IMPORTED_SONAME_RELEASE "libproj.so"
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
list(APPEND _cmake_import_check_targets PROJ::proj )
|
|
16
|
+
list(APPEND _cmake_import_check_files_for_PROJ::proj "${_IMPORT_PREFIX}/lib/libproj.so" )
|
|
17
|
+
|
|
18
|
+
# Commands beyond this point should not need to know the version.
|
|
19
|
+
set(CMAKE_IMPORT_FILE_VERSION)
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# Generated by CMake
|
|
2
|
+
|
|
3
|
+
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
|
|
4
|
+
message(FATAL_ERROR "CMake >= 2.8.3 required")
|
|
5
|
+
endif()
|
|
6
|
+
if(CMAKE_VERSION VERSION_LESS "2.8.3")
|
|
7
|
+
message(FATAL_ERROR "CMake >= 2.8.3 required")
|
|
8
|
+
endif()
|
|
9
|
+
cmake_policy(PUSH)
|
|
10
|
+
cmake_policy(VERSION 2.8.3...3.29)
|
|
11
|
+
#----------------------------------------------------------------
|
|
12
|
+
# Generated CMake target import file.
|
|
13
|
+
#----------------------------------------------------------------
|
|
14
|
+
|
|
15
|
+
# Commands may need to know the format version.
|
|
16
|
+
set(CMAKE_IMPORT_FILE_VERSION 1)
|
|
17
|
+
|
|
18
|
+
# Protect against multiple inclusion, which would fail when already imported targets are added once more.
|
|
19
|
+
set(_cmake_targets_defined "")
|
|
20
|
+
set(_cmake_targets_not_defined "")
|
|
21
|
+
set(_cmake_expected_targets "")
|
|
22
|
+
foreach(_cmake_expected_target IN ITEMS PROJ::proj)
|
|
23
|
+
list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
|
|
24
|
+
if(TARGET "${_cmake_expected_target}")
|
|
25
|
+
list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
|
|
26
|
+
else()
|
|
27
|
+
list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}")
|
|
28
|
+
endif()
|
|
29
|
+
endforeach()
|
|
30
|
+
unset(_cmake_expected_target)
|
|
31
|
+
if(_cmake_targets_defined STREQUAL _cmake_expected_targets)
|
|
32
|
+
unset(_cmake_targets_defined)
|
|
33
|
+
unset(_cmake_targets_not_defined)
|
|
34
|
+
unset(_cmake_expected_targets)
|
|
35
|
+
unset(CMAKE_IMPORT_FILE_VERSION)
|
|
36
|
+
cmake_policy(POP)
|
|
37
|
+
return()
|
|
38
|
+
endif()
|
|
39
|
+
if(NOT _cmake_targets_defined STREQUAL "")
|
|
40
|
+
string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}")
|
|
41
|
+
string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}")
|
|
42
|
+
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n")
|
|
43
|
+
endif()
|
|
44
|
+
unset(_cmake_targets_defined)
|
|
45
|
+
unset(_cmake_targets_not_defined)
|
|
46
|
+
unset(_cmake_expected_targets)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
# Compute the installation prefix relative to this file.
|
|
50
|
+
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
51
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
52
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
53
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
54
|
+
if(_IMPORT_PREFIX STREQUAL "/")
|
|
55
|
+
set(_IMPORT_PREFIX "")
|
|
56
|
+
endif()
|
|
57
|
+
|
|
58
|
+
# Create imported target PROJ::proj
|
|
59
|
+
add_library(PROJ::proj SHARED IMPORTED)
|
|
60
|
+
|
|
61
|
+
set_target_properties(PROJ::proj PROPERTIES
|
|
62
|
+
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
|
63
|
+
)
|
|
64
|
+
|
|
65
|
+
# Load information for each installed configuration.
|
|
66
|
+
file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/proj-targets-*.cmake")
|
|
67
|
+
foreach(_cmake_config_file IN LISTS _cmake_config_files)
|
|
68
|
+
include("${_cmake_config_file}")
|
|
69
|
+
endforeach()
|
|
70
|
+
unset(_cmake_config_file)
|
|
71
|
+
unset(_cmake_config_files)
|
|
72
|
+
|
|
73
|
+
# Cleanup temporary variables.
|
|
74
|
+
set(_IMPORT_PREFIX)
|
|
75
|
+
|
|
76
|
+
# Loop over all imported files and verify that they actually exist
|
|
77
|
+
foreach(_cmake_target IN LISTS _cmake_import_check_targets)
|
|
78
|
+
if(CMAKE_VERSION VERSION_LESS "3.28"
|
|
79
|
+
OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target}
|
|
80
|
+
OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}")
|
|
81
|
+
foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}")
|
|
82
|
+
if(NOT EXISTS "${_cmake_file}")
|
|
83
|
+
message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file
|
|
84
|
+
\"${_cmake_file}\"
|
|
85
|
+
but this file does not exist. Possible reasons include:
|
|
86
|
+
* The file was deleted, renamed, or moved to another location.
|
|
87
|
+
* An install or uninstall procedure did not complete successfully.
|
|
88
|
+
* The installation package was faulty and contained
|
|
89
|
+
\"${CMAKE_CURRENT_LIST_FILE}\"
|
|
90
|
+
but not all the files it references.
|
|
91
|
+
")
|
|
92
|
+
endif()
|
|
93
|
+
endforeach()
|
|
94
|
+
endif()
|
|
95
|
+
unset(_cmake_file)
|
|
96
|
+
unset("_cmake_import_check_files_for_${_cmake_target}")
|
|
97
|
+
endforeach()
|
|
98
|
+
unset(_cmake_target)
|
|
99
|
+
unset(_cmake_import_check_targets)
|
|
100
|
+
|
|
101
|
+
# This file does not depend on other imported targets which have
|
|
102
|
+
# been exported from the same project but in a separate export set.
|
|
103
|
+
|
|
104
|
+
# Commands beyond this point should not need to know the version.
|
|
105
|
+
set(CMAKE_IMPORT_FILE_VERSION)
|
|
106
|
+
cmake_policy(POP)
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Version checking for PROJ4
|
|
2
|
+
|
|
3
|
+
set (PACKAGE_VERSION "9.4.1")
|
|
4
|
+
set (PACKAGE_VERSION_MAJOR "9")
|
|
5
|
+
set (PACKAGE_VERSION_MINOR "4")
|
|
6
|
+
set (PACKAGE_VERSION_PATCH "1")
|
|
7
|
+
|
|
8
|
+
# These variable definitions parallel those in PROJ's
|
|
9
|
+
# cmake/CMakeLists.txt.
|
|
10
|
+
if (MSVC)
|
|
11
|
+
# For checking the compatibility of MSVC_TOOLSET_VERSION; see
|
|
12
|
+
# https://docs.microsoft.com/en-us/cpp/porting/overview-of-potential-upgrade-issues-visual-cpp
|
|
13
|
+
# Assume major version number is obtained by dropping the last decimal
|
|
14
|
+
# digit.
|
|
15
|
+
math (EXPR MSVC_TOOLSET_MAJOR "${MSVC_TOOLSET_VERSION}/10")
|
|
16
|
+
endif ()
|
|
17
|
+
|
|
18
|
+
if (NOT PACKAGE_FIND_NAME STREQUAL "PROJ4")
|
|
19
|
+
# Check package name (in particular, because of the way cmake finds
|
|
20
|
+
# package config files, the capitalization could easily be "wrong").
|
|
21
|
+
# This is necessary to ensure that the automatically generated
|
|
22
|
+
# variables, e.g., <package>_FOUND, are consistently spelled.
|
|
23
|
+
set (REASON "package = PROJ4, NOT ${PACKAGE_FIND_NAME}")
|
|
24
|
+
set (PACKAGE_VERSION_UNSUITABLE TRUE)
|
|
25
|
+
elseif (NOT (APPLE OR (NOT DEFINED CMAKE_SIZEOF_VOID_P) OR
|
|
26
|
+
CMAKE_SIZEOF_VOID_P EQUAL "8"))
|
|
27
|
+
# Reject if there's a 32-bit/64-bit mismatch (not necessary with Apple
|
|
28
|
+
# since a multi-architecture library is built for that platform).
|
|
29
|
+
set (REASON "sizeof(*void) = 8")
|
|
30
|
+
set (PACKAGE_VERSION_UNSUITABLE TRUE)
|
|
31
|
+
elseif (MSVC AND NOT (
|
|
32
|
+
# toolset version must be at least as great as PROJ's
|
|
33
|
+
MSVC_TOOLSET_VERSION GREATER_EQUAL 0
|
|
34
|
+
# and major versions must match
|
|
35
|
+
AND MSVC_TOOLSET_MAJOR EQUAL 0 ))
|
|
36
|
+
# Reject if there's a mismatch in MSVC compiler versions
|
|
37
|
+
set (REASON "MSVC_TOOLSET_VERSION = 0")
|
|
38
|
+
set (PACKAGE_VERSION_UNSUITABLE TRUE)
|
|
39
|
+
elseif (PACKAGE_FIND_VERSION)
|
|
40
|
+
if (PACKAGE_FIND_VERSION VERSION_EQUAL PACKAGE_VERSION)
|
|
41
|
+
set (PACKAGE_VERSION_EXACT TRUE)
|
|
42
|
+
elseif (PACKAGE_FIND_VERSION VERSION_LESS PACKAGE_VERSION
|
|
43
|
+
AND PACKAGE_FIND_VERSION_MAJOR EQUAL PACKAGE_VERSION_MAJOR)
|
|
44
|
+
set (PACKAGE_VERSION_COMPATIBLE TRUE)
|
|
45
|
+
endif ()
|
|
46
|
+
endif ()
|
|
47
|
+
|
|
48
|
+
# If unsuitable, append the reason to the package version so that it's
|
|
49
|
+
# visible to the user.
|
|
50
|
+
if (PACKAGE_VERSION_UNSUITABLE)
|
|
51
|
+
set (PACKAGE_VERSION "${PACKAGE_VERSION} (${REASON})")
|
|
52
|
+
endif ()
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Configure PROJ
|
|
2
|
+
#
|
|
3
|
+
# Set
|
|
4
|
+
# PROJ4_FOUND = 1
|
|
5
|
+
# PROJ4_INCLUDE_DIRS = /usr/local/include
|
|
6
|
+
# PROJ4_LIBRARIES = PROJ4::proj
|
|
7
|
+
# PROJ4_LIBRARY_DIRS = /usr/local/lib
|
|
8
|
+
# PROJ4_BINARY_DIRS = /usr/local/bin
|
|
9
|
+
# PROJ4_VERSION = 4.9.1 (for example)
|
|
10
|
+
if(PROJ4 STREQUAL "PROJ4")
|
|
11
|
+
message(DEPRECATION "find_package(PROJ4) is deprecated and will be retired soon. Please use find_package(PROJ) instead.")
|
|
12
|
+
endif()
|
|
13
|
+
|
|
14
|
+
include(CMakeFindDependencyMacro)
|
|
15
|
+
|
|
16
|
+
# We cannot have a find_dependency() call between cmake_policy(PUSH)/cmake_policy(POP)
|
|
17
|
+
# because find_dependency() issues a return() on failure, which results in
|
|
18
|
+
# imbalanced push/pop
|
|
19
|
+
# Cf https://gitlab.kitware.com/cmake/cmake/-/issues/17612
|
|
20
|
+
cmake_policy(PUSH)
|
|
21
|
+
cmake_policy(SET CMP0012 NEW)
|
|
22
|
+
if("ON")
|
|
23
|
+
set(PROJ_CONFIG_FIND_TIFF_DEP ON)
|
|
24
|
+
endif()
|
|
25
|
+
if("FALSE")
|
|
26
|
+
set(PROJ_CONFIG_FIND_CURL_DEP ON)
|
|
27
|
+
endif()
|
|
28
|
+
cmake_policy(POP)
|
|
29
|
+
|
|
30
|
+
find_dependency(SQLite3)
|
|
31
|
+
|
|
32
|
+
if(DEFINED PROJ_CONFIG_FIND_TIFF_DEP)
|
|
33
|
+
find_dependency(TIFF)
|
|
34
|
+
endif()
|
|
35
|
+
|
|
36
|
+
if(DEFINED PROJ_CONFIG_FIND_CURL_DEP)
|
|
37
|
+
# Chainload CURL usage requirements
|
|
38
|
+
find_dependency(CURL)
|
|
39
|
+
# Target CURL::libcurl only defined since CMake 3.12
|
|
40
|
+
if(NOT TARGET CURL::libcurl)
|
|
41
|
+
add_library(CURL::libcurl INTERFACE IMPORTED)
|
|
42
|
+
set_target_properties(CURL::libcurl PROPERTIES
|
|
43
|
+
INTERFACE_INCLUDE_DIRECTORIES "${CURL_INCLUDE_DIRS}"
|
|
44
|
+
INTERFACE_LINK_LIBRARIES "${CURL_LIBRARIES}"
|
|
45
|
+
)
|
|
46
|
+
endif()
|
|
47
|
+
endif()
|
|
48
|
+
|
|
49
|
+
function(set_variable_from_rel_or_absolute_path var root rel_or_abs_path)
|
|
50
|
+
if(IS_ABSOLUTE "${rel_or_abs_path}")
|
|
51
|
+
set(${var} "${rel_or_abs_path}" PARENT_SCOPE)
|
|
52
|
+
else()
|
|
53
|
+
set(${var} "${root}/${rel_or_abs_path}" PARENT_SCOPE)
|
|
54
|
+
endif()
|
|
55
|
+
endfunction()
|
|
56
|
+
|
|
57
|
+
# Tell the user project where to find our headers and libraries
|
|
58
|
+
get_filename_component (_DIR ${CMAKE_CURRENT_LIST_FILE} PATH)
|
|
59
|
+
get_filename_component (_ROOT "${_DIR}/../../../" ABSOLUTE)
|
|
60
|
+
# Use _ROOT as prefix here for the possibility of relocation after installation.
|
|
61
|
+
set_variable_from_rel_or_absolute_path("PROJ4_INCLUDE_DIRS" "${_ROOT}" "include")
|
|
62
|
+
set_variable_from_rel_or_absolute_path("PROJ4_LIBRARY_DIRS" "${_ROOT}" "lib")
|
|
63
|
+
set_variable_from_rel_or_absolute_path("PROJ4_BINARY_DIRS" "${_ROOT}" "bin")
|
|
64
|
+
|
|
65
|
+
set (PROJ4_LIBRARIES PROJ4::proj)
|
|
66
|
+
# Read in the exported definition of the library
|
|
67
|
+
include ("${_DIR}/proj-targets.cmake")
|
|
68
|
+
if (ON)
|
|
69
|
+
include ("${_DIR}/proj4-targets.cmake")
|
|
70
|
+
endif()
|
|
71
|
+
|
|
72
|
+
unset (_ROOT)
|
|
73
|
+
unset (_DIR)
|
|
74
|
+
|
|
75
|
+
if ("PROJ4" STREQUAL "PROJ4")
|
|
76
|
+
# For backward compatibility with old releases of libgeotiff
|
|
77
|
+
set (PROJ4_INCLUDE_DIR
|
|
78
|
+
${PROJ4_INCLUDE_DIRS})
|
|
79
|
+
endif ()
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#----------------------------------------------------------------
|
|
2
|
+
# Generated CMake target import file for configuration "Release".
|
|
3
|
+
#----------------------------------------------------------------
|
|
4
|
+
|
|
5
|
+
# Commands may need to know the format version.
|
|
6
|
+
set(CMAKE_IMPORT_FILE_VERSION 1)
|
|
7
|
+
|
|
8
|
+
# Import target "PROJ4::proj" for configuration "Release"
|
|
9
|
+
set_property(TARGET PROJ4::proj APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
|
|
10
|
+
set_target_properties(PROJ4::proj PROPERTIES
|
|
11
|
+
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libproj.so"
|
|
12
|
+
IMPORTED_SONAME_RELEASE "libproj.so"
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
list(APPEND _cmake_import_check_targets PROJ4::proj )
|
|
16
|
+
list(APPEND _cmake_import_check_files_for_PROJ4::proj "${_IMPORT_PREFIX}/lib/libproj.so" )
|
|
17
|
+
|
|
18
|
+
# Commands beyond this point should not need to know the version.
|
|
19
|
+
set(CMAKE_IMPORT_FILE_VERSION)
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# Generated by CMake
|
|
2
|
+
|
|
3
|
+
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
|
|
4
|
+
message(FATAL_ERROR "CMake >= 2.8.3 required")
|
|
5
|
+
endif()
|
|
6
|
+
if(CMAKE_VERSION VERSION_LESS "2.8.3")
|
|
7
|
+
message(FATAL_ERROR "CMake >= 2.8.3 required")
|
|
8
|
+
endif()
|
|
9
|
+
cmake_policy(PUSH)
|
|
10
|
+
cmake_policy(VERSION 2.8.3...3.29)
|
|
11
|
+
#----------------------------------------------------------------
|
|
12
|
+
# Generated CMake target import file.
|
|
13
|
+
#----------------------------------------------------------------
|
|
14
|
+
|
|
15
|
+
# Commands may need to know the format version.
|
|
16
|
+
set(CMAKE_IMPORT_FILE_VERSION 1)
|
|
17
|
+
|
|
18
|
+
# Protect against multiple inclusion, which would fail when already imported targets are added once more.
|
|
19
|
+
set(_cmake_targets_defined "")
|
|
20
|
+
set(_cmake_targets_not_defined "")
|
|
21
|
+
set(_cmake_expected_targets "")
|
|
22
|
+
foreach(_cmake_expected_target IN ITEMS PROJ4::proj)
|
|
23
|
+
list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
|
|
24
|
+
if(TARGET "${_cmake_expected_target}")
|
|
25
|
+
list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
|
|
26
|
+
else()
|
|
27
|
+
list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}")
|
|
28
|
+
endif()
|
|
29
|
+
endforeach()
|
|
30
|
+
unset(_cmake_expected_target)
|
|
31
|
+
if(_cmake_targets_defined STREQUAL _cmake_expected_targets)
|
|
32
|
+
unset(_cmake_targets_defined)
|
|
33
|
+
unset(_cmake_targets_not_defined)
|
|
34
|
+
unset(_cmake_expected_targets)
|
|
35
|
+
unset(CMAKE_IMPORT_FILE_VERSION)
|
|
36
|
+
cmake_policy(POP)
|
|
37
|
+
return()
|
|
38
|
+
endif()
|
|
39
|
+
if(NOT _cmake_targets_defined STREQUAL "")
|
|
40
|
+
string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}")
|
|
41
|
+
string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}")
|
|
42
|
+
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n")
|
|
43
|
+
endif()
|
|
44
|
+
unset(_cmake_targets_defined)
|
|
45
|
+
unset(_cmake_targets_not_defined)
|
|
46
|
+
unset(_cmake_expected_targets)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
# Compute the installation prefix relative to this file.
|
|
50
|
+
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
51
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
52
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
53
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
54
|
+
if(_IMPORT_PREFIX STREQUAL "/")
|
|
55
|
+
set(_IMPORT_PREFIX "")
|
|
56
|
+
endif()
|
|
57
|
+
|
|
58
|
+
# Create imported target PROJ4::proj
|
|
59
|
+
add_library(PROJ4::proj SHARED IMPORTED)
|
|
60
|
+
|
|
61
|
+
set_target_properties(PROJ4::proj PROPERTIES
|
|
62
|
+
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
|
63
|
+
)
|
|
64
|
+
|
|
65
|
+
# Load information for each installed configuration.
|
|
66
|
+
file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/proj4-targets-*.cmake")
|
|
67
|
+
foreach(_cmake_config_file IN LISTS _cmake_config_files)
|
|
68
|
+
include("${_cmake_config_file}")
|
|
69
|
+
endforeach()
|
|
70
|
+
unset(_cmake_config_file)
|
|
71
|
+
unset(_cmake_config_files)
|
|
72
|
+
|
|
73
|
+
# Cleanup temporary variables.
|
|
74
|
+
set(_IMPORT_PREFIX)
|
|
75
|
+
|
|
76
|
+
# Loop over all imported files and verify that they actually exist
|
|
77
|
+
foreach(_cmake_target IN LISTS _cmake_import_check_targets)
|
|
78
|
+
if(CMAKE_VERSION VERSION_LESS "3.28"
|
|
79
|
+
OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target}
|
|
80
|
+
OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}")
|
|
81
|
+
foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}")
|
|
82
|
+
if(NOT EXISTS "${_cmake_file}")
|
|
83
|
+
message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file
|
|
84
|
+
\"${_cmake_file}\"
|
|
85
|
+
but this file does not exist. Possible reasons include:
|
|
86
|
+
* The file was deleted, renamed, or moved to another location.
|
|
87
|
+
* An install or uninstall procedure did not complete successfully.
|
|
88
|
+
* The installation package was faulty and contained
|
|
89
|
+
\"${CMAKE_CURRENT_LIST_FILE}\"
|
|
90
|
+
but not all the files it references.
|
|
91
|
+
")
|
|
92
|
+
endif()
|
|
93
|
+
endforeach()
|
|
94
|
+
endif()
|
|
95
|
+
unset(_cmake_file)
|
|
96
|
+
unset("_cmake_import_check_files_for_${_cmake_target}")
|
|
97
|
+
endforeach()
|
|
98
|
+
unset(_cmake_target)
|
|
99
|
+
unset(_cmake_import_check_targets)
|
|
100
|
+
|
|
101
|
+
# This file does not depend on other imported targets which have
|
|
102
|
+
# been exported from the same project but in a separate export set.
|
|
103
|
+
|
|
104
|
+
# Commands beyond this point should not need to know the version.
|
|
105
|
+
set(CMAKE_IMPORT_FILE_VERSION)
|
|
106
|
+
cmake_policy(POP)
|
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
prefix=/tmp/cppjs/live/packages/cppjs-package-proj/.cppjs/build/Source-Release/prebuilt/Android-arm64-v8a
|
|
2
|
+
libdir=${prefix}/lib
|
|
3
|
+
includedir=${prefix}/include
|
|
4
|
+
datarootdir=${prefix}/share
|
|
5
|
+
datadir=${datarootdir}/proj
|
|
6
|
+
|
|
7
|
+
Name: PROJ
|
|
8
|
+
Description: Coordinate transformation software library
|
|
9
|
+
Requires:
|
|
10
|
+
Version: 9.4.1
|
|
11
|
+
Libs: -L${libdir} -lproj
|
|
12
|
+
Libs.private: -pthread -lc++ -lm -ldl
|
|
13
|
+
Requires.private: sqlite3 libtiff-4
|
|
14
|
+
Cflags: -I${includedir}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
--------------------------------------------------------------------------------
|
|
2
|
+
Authors
|
|
3
|
+
--------------------------------------------------------------------------------
|
|
4
|
+
|
|
5
|
+
Original Author
|
|
6
|
+
................................................................................
|
|
7
|
+
|
|
8
|
+
Gerald Evenden (1935-2016)
|
|
9
|
+
|
|
10
|
+
Maintainer(s)
|
|
11
|
+
................................................................................
|
|
12
|
+
|
|
13
|
+
Kristian Evers <kreve@sdfe.dk>
|
|
14
|
+
Even Rouault <even.rouault@spatialys.com>
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
Project Steering Committee
|
|
18
|
+
--------------------------------------------------------------------------------
|
|
19
|
+
|
|
20
|
+
Process and membership can be found at:
|
|
21
|
+
https://proj.org/community/rfc/rfc-1.html
|
|
22
|
+
|
|
23
|
+
Chair
|
|
24
|
+
................................................................................
|
|
25
|
+
|
|
26
|
+
Kristian Evers <kreve@sdfe.dk>
|
|
27
|
+
|
|
28
|
+
Members
|
|
29
|
+
................................................................................
|
|
30
|
+
|
|
31
|
+
Frank Warmerdam <warmerdam@pobox.com>
|
|
32
|
+
Howard Butler <howard@hobu.co>
|
|
33
|
+
Charles Karney <charles.karney@sri.com>
|
|
34
|
+
Thomas Knudsen <thokn@sdfe.dk>
|
|
35
|
+
Even Rouault <even.rouault@spatialys.com>
|
|
36
|
+
Kurt Schwehr <schwehr@gmail.com>
|
|
37
|
+
|
|
38
|
+
Contributors
|
|
39
|
+
--------------------------------------------------------------------------------
|
|
40
|
+
|
|
41
|
+
The full list of contributors can be found on GitHub
|
|
42
|
+
https://github.com/OSGeo/PROJ/graphs/contributors
|