├── .gitignore ├── .gitmodules ├── .travis.yml ├── Cartfile ├── README.md ├── patches ├── gg_dxf.h.patch ├── gg_formats.h.patch ├── gg_structs.h.patch └── sqlite.h.patch ├── resources ├── Info.plist ├── module.modulemap └── prefix.pch └── spatialite.xcodeproj ├── project.pbxproj ├── project.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── spatialite.xcscmblueprint └── xcuserdata │ └── ryanpowell.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── xcshareddata └── xcschemes │ └── spatialite.xcscheme └── xcuserdata └── ryanpowell.xcuserdatad └── xcschemes └── xcschememanagement.plist /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Cartfile.resolved 3 | Carthage 4 | build 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "spatialite"] 2 | path = spatialite 3 | url = https://github.com/Ryandev/SpatiaLite.git 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: objective-c 2 | osx_image: xcode7.3 3 | xcode_sdk: iphonesimulator9.3 4 | xcode_project: spatialite.xcodeproj 5 | xcode_scheme: spatialite 6 | 7 | before_install: 8 | - brew install carthage 9 | - carthage update 10 | -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "Ryandev/Proj4-iOS" == 4.9.2 2 | github "Ryandev/GEOS-iOS" == 3.5.0 3 | github "Ryandev/SQLite-iOS" == 3.11.1 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Spatialite 3 | 4 | [![Build Status](https://api.travis-ci.org/Ryandev/spatialite-iOS.svg)](https://travis-ci.org/Ryandev/spatialite-iOS) 5 | [![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) 6 | [![License](https://img.shields.io/badge/license-MPL-blue.svg)](https://www.mozilla.org/en-US/MPL/1.1) 7 | 8 | Spatialite is a plugin for SQLite that allows for geo-spatial queries 9 | 10 | 11 | ## Usage 12 | 13 | * Include spatialite and sqlite header 14 | ```objc 15 | #import 16 | #import 17 | ``` 18 | 19 | * Initialize spatialite where ''mySQLite3Connection'' is your handle to a valid database instance 20 | 21 | ```objc 22 | int sqliteInitStatus = sqlite3_initialize(); 23 | assert(sqliteInitStatus==SQLITE_OK); 24 | 25 | int sqliteInitOSStatus = sqlite3_os_init(); 26 | assert(sqliteInitOSStatus==SQLITE_OK); 27 | 28 | sqlite3_enable_load_extension(mySQLite3Connection, 1); 29 | 30 | spatialite_initialize(); 31 | 32 | _spatialiteConn = spatialite_alloc_connection(); 33 | assert(_spatialiteConn); 34 | spatialite_init_ex(mySQLite3Connection, _spatialiteConn, 1);``` 35 | ``` 36 | 37 | After the above you can call SQLite with queries containing spatialite functions 38 | 39 | ## Notes 40 | If you use the sqlite3 built provided by iOS/Mac ensure this version supports loading extension (Alternatively build sqlite3 with [extension support](https://www.github.com/Ryandev/SQLite-iOS)) 41 | 42 | ## Project setup 43 | 44 | ### Carthage 45 | ``` 46 | github 'Ryandev/proj4' == 4.9.2 47 | github 'Ryandev/geos' == 3.5.0 48 | ``` 49 | 50 | 51 | ## License 52 | 53 | SpatiaLite is licensed under the MPL tri-license terms; you are free to choose the best-fit license between: 54 | 55 | 1. [MPL 1.1](http://www.mozilla.org/MPL/MPL-1.1.html) 56 | 2. [GPL v2.0](http://www.gnu.org/licenses/gpl-2.0.html#TOC1) or any subsequent version 57 | 3. [LGPL v2.1](http://www.gnu.org/licenses/lgpl-2.1.html) or any subsequent version 58 | -------------------------------------------------------------------------------- /patches/gg_dxf.h.patch: -------------------------------------------------------------------------------- 1 | --- ../spatialite/src/Headers/spatialite/gg_dxf.h 2016-04-06 21:47:50.000000000 +0100 2 | +++ ./gg_dxf.h 2016-04-07 19:16:26.000000000 +0100 3 | @@ -59,6 +59,8 @@ 4 | { 5 | #endif 6 | 7 | +#include 8 | + 9 | /* constant values for DXF */ 10 | 11 | /** import distinct layers */ 12 | -------------------------------------------------------------------------------- /patches/gg_formats.h.patch: -------------------------------------------------------------------------------- 1 | --- ../spatialite/src/Headers/spatialite/gg_formats.h 2016-04-06 21:47:50.000000000 +0100 2 | +++ ./gg_formats.h 2016-04-07 19:16:24.000000000 +0100 3 | @@ -60,6 +60,8 @@ 4 | { 5 | #endif 6 | 7 | +#include 8 | + 9 | /* function prototypes */ 10 | 11 | /** 12 | -------------------------------------------------------------------------------- /patches/gg_structs.h.patch: -------------------------------------------------------------------------------- 1 | --- ../spatialite/src/Headers/spatialite/gg_structs.h 2016-04-07 21:08:45.000000000 +0100 2 | +++ ./gg_structs.h 2016-04-07 21:10:26.000000000 +0100 3 | @@ -62,6 +62,8 @@ 4 | { 5 | #endif 6 | 7 | +#include 8 | + 9 | /** 10 | Container for OGC POINT Geometry 11 | */ 12 | -------------------------------------------------------------------------------- /patches/sqlite.h.patch: -------------------------------------------------------------------------------- 1 | --- ../spatialite/src/Headers/spatialite/sqlite.h 2016-04-09 11:13:12.000000000 +0100 2 | +++ ./sqlite.h 2016-04-09 11:16:30.000000000 +0100 3 | @@ -46,21 +46,9 @@ 4 | #ifndef _SPATIALITE_SQLITE_H 5 | #define _SPATIALITE_SQLITE_H 6 | 7 | -#ifdef LOADABLE_EXTENSION /* loadable-extension only */ 8 | -#ifdef SPL_AMALGAMATION /* spatialite-amalgamation */ 9 | -#include 10 | -#else 11 | -#include 12 | -#endif 13 | -/* We can't use SQLITE_EXTENSION_INIT1 as this is an intializer in recent version of sqlite */ 14 | -extern const sqlite3_api_routines *sqlite3_api; 15 | -#else /* ordinary lib */ 16 | -#ifdef SPL_AMALGAMATION /* spatialite-amalgamation */ 17 | -#include 18 | -#else 19 | + 20 | #include 21 | -#endif 22 | -#endif 23 | + 24 | 25 | #ifndef SQLITE_DETERMINISTIC 26 | /* probably SQLite < 3.8.3 - attempting to fix */ 27 | -------------------------------------------------------------------------------- /resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 4.3.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(CURRENT_PROJECT_VERSION) 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /resources/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module spatialite { 2 | umbrella header "spatialite.h" 3 | export * 4 | } 5 | -------------------------------------------------------------------------------- /resources/prefix.pch: -------------------------------------------------------------------------------- 1 | 2 | #define SPATIALITE_DECLARE extern 3 | 4 | #define PROJECTS_H 5 | 6 | #define VERSION "4.3.0" 7 | 8 | #define TARGET_CPU "armv7" 9 | 10 | #include 11 | 12 | #include "spatialite_private.h" 13 | 14 | 15 | SPATIALITE_PRIVATE int virtualshape_extension_init (void *db); 16 | SPATIALITE_PRIVATE int virtualdbf_extension_init (void *db); 17 | SPATIALITE_PRIVATE int virtualtext_extension_init (void *db); 18 | SPATIALITE_PRIVATE int virtualXL_extension_init (void *db); 19 | SPATIALITE_PRIVATE int virtualnetwork_extension_init (void *db); 20 | SPATIALITE_PRIVATE int virtualfdo_extension_init (void *db); 21 | SPATIALITE_PRIVATE int virtualbbox_extension_init (void *db, 22 | const void *p_cache); 23 | SPATIALITE_PRIVATE int mbrcache_extension_init (void *db); 24 | SPATIALITE_PRIVATE int virtual_spatialindex_extension_init (void *db); 25 | SPATIALITE_PRIVATE int virtual_elementary_extension_init (void *db); 26 | SPATIALITE_PRIVATE int virtual_xpath_extension_init (void *db, 27 | const void *p_cache); 28 | SPATIALITE_PRIVATE int virtualgpkg_extension_init (void *db); 29 | -------------------------------------------------------------------------------- /spatialite.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | B732737F1C9DC28B00AB3FE9 /* prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = B732737E1C9DC28B00AB3FE9 /* prefix.pch */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | B73273841C9DC56600AB3FE9 /* proj4.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B73273821C9DC56600AB3FE9 /* proj4.framework */; }; 12 | B73D8B141C98B5C500F327B7 /* alloc_cache.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A191C98B5C500F327B7 /* alloc_cache.c */; }; 13 | B73D8B151C98B5C500F327B7 /* cache_aux_1.h in Headers */ = {isa = PBXBuildFile; fileRef = B73D8A1A1C98B5C500F327B7 /* cache_aux_1.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | B73D8B161C98B5C500F327B7 /* cache_aux_2.h in Headers */ = {isa = PBXBuildFile; fileRef = B73D8A1B1C98B5C500F327B7 /* cache_aux_2.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 | B73D8B171C98B5C500F327B7 /* cache_aux_3.h in Headers */ = {isa = PBXBuildFile; fileRef = B73D8A1C1C98B5C500F327B7 /* cache_aux_3.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | B73D8B1F1C98B5C500F327B7 /* gaia_control_points.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A261C98B5C500F327B7 /* gaia_control_points.c */; }; 17 | B73D8B201C98B5C500F327B7 /* grass_crs.h in Headers */ = {isa = PBXBuildFile; fileRef = B73D8A271C98B5C500F327B7 /* grass_crs.h */; settings = {ATTRIBUTES = (Public, ); }; }; 18 | B73D8B211C98B5C500F327B7 /* grass_crs3d.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A281C98B5C500F327B7 /* grass_crs3d.c */; }; 19 | B73D8B221C98B5C500F327B7 /* grass_georef.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A291C98B5C500F327B7 /* grass_georef.c */; }; 20 | B73D8B231C98B5C500F327B7 /* grass_georef_tps.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A2A1C98B5C500F327B7 /* grass_georef_tps.c */; }; 21 | B73D8B261C98B5C500F327B7 /* dxf_load_distinct.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A2E1C98B5C500F327B7 /* dxf_load_distinct.c */; }; 22 | B73D8B271C98B5C500F327B7 /* dxf_load_mixed.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A2F1C98B5C500F327B7 /* dxf_load_mixed.c */; }; 23 | B73D8B281C98B5C500F327B7 /* dxf_loader.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A301C98B5C500F327B7 /* dxf_loader.c */; }; 24 | B73D8B291C98B5C500F327B7 /* dxf_parser.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A311C98B5C500F327B7 /* dxf_parser.c */; }; 25 | B73D8B2A1C98B5C500F327B7 /* dxf_private.h in Headers */ = {isa = PBXBuildFile; fileRef = B73D8A321C98B5C500F327B7 /* dxf_private.h */; settings = {ATTRIBUTES = (Public, ); }; }; 26 | B73D8B2B1C98B5C500F327B7 /* dxf_writer.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A331C98B5C500F327B7 /* dxf_writer.c */; }; 27 | B73D8B2E1C98B5C500F327B7 /* gg_sqlaux.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A371C98B5C500F327B7 /* gg_sqlaux.c */; }; 28 | B73D8B2F1C98B5C500F327B7 /* gg_utf8.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A381C98B5C500F327B7 /* gg_utf8.c */; }; 29 | B73D8B321C98B5C500F327B7 /* gaia_exif.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A3C1C98B5C500F327B7 /* gaia_exif.c */; }; 30 | B73D8B411C98B5C500F327B7 /* gg_advanced.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A4D1C98B5C500F327B7 /* gg_advanced.c */; }; 31 | B73D8B421C98B5C500F327B7 /* gg_endian.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A4E1C98B5C500F327B7 /* gg_endian.c */; }; 32 | B73D8B431C98B5C500F327B7 /* gg_ewkt.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A4F1C98B5C500F327B7 /* gg_ewkt.c */; }; 33 | B73D8B441C98B5C500F327B7 /* gg_extras.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A501C98B5C500F327B7 /* gg_extras.c */; }; 34 | B73D8B451C98B5C500F327B7 /* gg_geodesic.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A511C98B5C500F327B7 /* gg_geodesic.c */; }; 35 | B73D8B461C98B5C500F327B7 /* gg_geoJSON.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A521C98B5C500F327B7 /* gg_geoJSON.c */; }; 36 | B73D8B471C98B5C500F327B7 /* gg_geometries.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A531C98B5C500F327B7 /* gg_geometries.c */; }; 37 | B73D8B481C98B5C500F327B7 /* gg_geoscvt.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A541C98B5C500F327B7 /* gg_geoscvt.c */; }; 38 | B73D8B491C98B5C500F327B7 /* gg_gml.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A551C98B5C500F327B7 /* gg_gml.c */; }; 39 | B73D8B4A1C98B5C500F327B7 /* gg_kml.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A561C98B5C500F327B7 /* gg_kml.c */; }; 40 | B73D8B4B1C98B5C500F327B7 /* gg_lwgeom.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A571C98B5C500F327B7 /* gg_lwgeom.c */; }; 41 | B73D8B4C1C98B5C500F327B7 /* gg_matrix.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A581C98B5C500F327B7 /* gg_matrix.c */; }; 42 | B73D8B4D1C98B5C500F327B7 /* gg_relations.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A591C98B5C500F327B7 /* gg_relations.c */; }; 43 | B73D8B4E1C98B5C500F327B7 /* gg_relations_ext.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A5A1C98B5C500F327B7 /* gg_relations_ext.c */; }; 44 | B73D8B4F1C98B5C500F327B7 /* gg_shape.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A5B1C98B5C500F327B7 /* gg_shape.c */; }; 45 | B73D8B501C98B5C500F327B7 /* gg_transform.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A5C1C98B5C500F327B7 /* gg_transform.c */; }; 46 | B73D8B511C98B5C500F327B7 /* gg_vanuatu.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A5D1C98B5C500F327B7 /* gg_vanuatu.c */; }; 47 | B73D8B521C98B5C500F327B7 /* gg_voronoj.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A5E1C98B5C500F327B7 /* gg_voronoj.c */; }; 48 | B73D8B531C98B5C500F327B7 /* gg_wkb.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A5F1C98B5C500F327B7 /* gg_wkb.c */; }; 49 | B73D8B541C98B5C500F327B7 /* gg_wkt.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A601C98B5C500F327B7 /* gg_wkt.c */; }; 50 | B73D8B551C98B5C500F327B7 /* gg_xml.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A611C98B5C500F327B7 /* gg_xml.c */; }; 51 | B73D8B6F1C98B5C500F327B7 /* gaia_cvt_gpkg.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A7E1C98B5C500F327B7 /* gaia_cvt_gpkg.c */; }; 52 | B73D8B701C98B5C500F327B7 /* geopackage_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B73D8A7F1C98B5C500F327B7 /* geopackage_internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; 53 | B73D8B711C98B5C500F327B7 /* gpkg_add_geometry_triggers.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A801C98B5C500F327B7 /* gpkg_add_geometry_triggers.c */; }; 54 | B73D8B721C98B5C500F327B7 /* gpkg_add_spatial_index.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A811C98B5C500F327B7 /* gpkg_add_spatial_index.c */; }; 55 | B73D8B731C98B5C500F327B7 /* gpkg_add_tile_triggers.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A821C98B5C500F327B7 /* gpkg_add_tile_triggers.c */; }; 56 | B73D8B741C98B5C500F327B7 /* gpkg_get_normal_row.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A831C98B5C500F327B7 /* gpkg_get_normal_row.c */; }; 57 | B73D8B751C98B5C500F327B7 /* gpkg_get_normal_zoom.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A841C98B5C500F327B7 /* gpkg_get_normal_zoom.c */; }; 58 | B73D8B761C98B5C500F327B7 /* gpkgAddGeometryColumn.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A851C98B5C500F327B7 /* gpkgAddGeometryColumn.c */; }; 59 | B73D8B771C98B5C500F327B7 /* gpkgBinary.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A861C98B5C500F327B7 /* gpkgBinary.c */; }; 60 | B73D8B781C98B5C500F327B7 /* gpkgCreateBaseTables.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A871C98B5C500F327B7 /* gpkgCreateBaseTables.c */; }; 61 | B73D8B791C98B5C500F327B7 /* gpkgCreateTilesTable.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A881C98B5C500F327B7 /* gpkgCreateTilesTable.c */; }; 62 | B73D8B7A1C98B5C500F327B7 /* gpkgCreateTilesZoomLevel.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A891C98B5C500F327B7 /* gpkgCreateTilesZoomLevel.c */; }; 63 | B73D8B7B1C98B5C500F327B7 /* gpkgGetImageType.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A8A1C98B5C500F327B7 /* gpkgGetImageType.c */; }; 64 | B73D8B7C1C98B5C500F327B7 /* gpkgInsertEpsgSRID.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A8B1C98B5C500F327B7 /* gpkgInsertEpsgSRID.c */; }; 65 | B73D8B7D1C98B5C500F327B7 /* gpkgMakePoint.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8A8C1C98B5C500F327B7 /* gpkgMakePoint.c */; }; 66 | B73D8B991C98B5C500F327B7 /* gaia_md5.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AAB1C98B5C500F327B7 /* gaia_md5.c */; }; 67 | B73D8B9C1C98B5C500F327B7 /* md5.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AAE1C98B5C500F327B7 /* md5.c */; }; 68 | B73D8B9D1C98B5C500F327B7 /* md5.h in Headers */ = {isa = PBXBuildFile; fileRef = B73D8AAF1C98B5C500F327B7 /* md5.h */; settings = {ATTRIBUTES = (Public, ); }; }; 69 | B73D8BA01C98B5C500F327B7 /* shapefiles.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AB31C98B5C500F327B7 /* shapefiles.c */; }; 70 | B73D8BA11C98B5C500F327B7 /* validator.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AB41C98B5C500F327B7 /* validator.c */; }; 71 | B73D8BA21C98B5C500F327B7 /* extra_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AB61C98B5C500F327B7 /* extra_tables.c */; }; 72 | B73D8BA51C98B5C500F327B7 /* mbrcache.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AB91C98B5C500F327B7 /* mbrcache.c */; }; 73 | B73D8BA61C98B5C500F327B7 /* metatables.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ABA1C98B5C500F327B7 /* metatables.c */; }; 74 | B73D8BA71C98B5C500F327B7 /* se_helpers.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ABB1C98B5C500F327B7 /* se_helpers.c */; }; 75 | B73D8BA81C98B5C500F327B7 /* spatialite.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ABC1C98B5C500F327B7 /* spatialite.c */; }; 76 | B73D8BA91C98B5C500F327B7 /* spatialite_init.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ABD1C98B5C500F327B7 /* spatialite_init.c */; }; 77 | B73D8BAA1C98B5C500F327B7 /* srid_aux.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ABE1C98B5C500F327B7 /* srid_aux.c */; }; 78 | B73D8BAB1C98B5C500F327B7 /* statistics.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ABF1C98B5C500F327B7 /* statistics.c */; }; 79 | B73D8BAC1C98B5C500F327B7 /* table_cloner.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AC01C98B5C500F327B7 /* table_cloner.c */; }; 80 | B73D8BAD1C98B5C500F327B7 /* virtualbbox.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AC11C98B5C500F327B7 /* virtualbbox.c */; }; 81 | B73D8BAE1C98B5C500F327B7 /* virtualdbf.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AC21C98B5C500F327B7 /* virtualdbf.c */; }; 82 | B73D8BAF1C98B5C500F327B7 /* virtualelementary.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AC31C98B5C500F327B7 /* virtualelementary.c */; }; 83 | B73D8BB01C98B5C500F327B7 /* virtualfdo.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AC41C98B5C500F327B7 /* virtualfdo.c */; }; 84 | B73D8BB11C98B5C500F327B7 /* virtualgpkg.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AC51C98B5C500F327B7 /* virtualgpkg.c */; }; 85 | B73D8BB21C98B5C500F327B7 /* virtualnetwork.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AC61C98B5C500F327B7 /* virtualnetwork.c */; }; 86 | B73D8BB31C98B5C500F327B7 /* virtualshape.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AC71C98B5C500F327B7 /* virtualshape.c */; }; 87 | B73D8BB41C98B5C500F327B7 /* virtualspatialindex.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AC81C98B5C500F327B7 /* virtualspatialindex.c */; }; 88 | B73D8BB51C98B5C500F327B7 /* virtualXL.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AC91C98B5C500F327B7 /* virtualXL.c */; }; 89 | B73D8BB61C98B5C500F327B7 /* virtualxpath.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ACA1C98B5C500F327B7 /* virtualxpath.c */; }; 90 | B73D8BB71C98B5C500F327B7 /* epsg_inlined_00.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ACC1C98B5C500F327B7 /* epsg_inlined_00.c */; }; 91 | B73D8BB81C98B5C500F327B7 /* epsg_inlined_01.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ACD1C98B5C500F327B7 /* epsg_inlined_01.c */; }; 92 | B73D8BB91C98B5C500F327B7 /* epsg_inlined_02.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ACE1C98B5C500F327B7 /* epsg_inlined_02.c */; }; 93 | B73D8BBA1C98B5C500F327B7 /* epsg_inlined_03.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ACF1C98B5C500F327B7 /* epsg_inlined_03.c */; }; 94 | B73D8BBB1C98B5C500F327B7 /* epsg_inlined_04.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AD01C98B5C500F327B7 /* epsg_inlined_04.c */; }; 95 | B73D8BBC1C98B5C500F327B7 /* epsg_inlined_05.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AD11C98B5C500F327B7 /* epsg_inlined_05.c */; }; 96 | B73D8BBD1C98B5C500F327B7 /* epsg_inlined_06.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AD21C98B5C500F327B7 /* epsg_inlined_06.c */; }; 97 | B73D8BBE1C98B5C500F327B7 /* epsg_inlined_07.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AD31C98B5C500F327B7 /* epsg_inlined_07.c */; }; 98 | B73D8BBF1C98B5C500F327B7 /* epsg_inlined_08.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AD41C98B5C500F327B7 /* epsg_inlined_08.c */; }; 99 | B73D8BC01C98B5C500F327B7 /* epsg_inlined_09.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AD51C98B5C500F327B7 /* epsg_inlined_09.c */; }; 100 | B73D8BC11C98B5C500F327B7 /* epsg_inlined_10.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AD61C98B5C500F327B7 /* epsg_inlined_10.c */; }; 101 | B73D8BC21C98B5C500F327B7 /* epsg_inlined_11.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AD71C98B5C500F327B7 /* epsg_inlined_11.c */; }; 102 | B73D8BC31C98B5C500F327B7 /* epsg_inlined_12.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AD81C98B5C500F327B7 /* epsg_inlined_12.c */; }; 103 | B73D8BC41C98B5C500F327B7 /* epsg_inlined_13.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AD91C98B5C500F327B7 /* epsg_inlined_13.c */; }; 104 | B73D8BC51C98B5C500F327B7 /* epsg_inlined_14.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ADA1C98B5C500F327B7 /* epsg_inlined_14.c */; }; 105 | B73D8BC61C98B5C500F327B7 /* epsg_inlined_15.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ADB1C98B5C500F327B7 /* epsg_inlined_15.c */; }; 106 | B73D8BC71C98B5C500F327B7 /* epsg_inlined_16.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ADC1C98B5C500F327B7 /* epsg_inlined_16.c */; }; 107 | B73D8BC81C98B5C500F327B7 /* epsg_inlined_17.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ADD1C98B5C500F327B7 /* epsg_inlined_17.c */; }; 108 | B73D8BC91C98B5C500F327B7 /* epsg_inlined_18.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ADE1C98B5C500F327B7 /* epsg_inlined_18.c */; }; 109 | B73D8BCA1C98B5C500F327B7 /* epsg_inlined_19.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8ADF1C98B5C500F327B7 /* epsg_inlined_19.c */; }; 110 | B73D8BCB1C98B5C500F327B7 /* epsg_inlined_20.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AE01C98B5C500F327B7 /* epsg_inlined_20.c */; }; 111 | B73D8BCC1C98B5C500F327B7 /* epsg_inlined_21.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AE11C98B5C500F327B7 /* epsg_inlined_21.c */; }; 112 | B73D8BCD1C98B5C500F327B7 /* epsg_inlined_22.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AE21C98B5C500F327B7 /* epsg_inlined_22.c */; }; 113 | B73D8BCE1C98B5C500F327B7 /* epsg_inlined_23.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AE31C98B5C500F327B7 /* epsg_inlined_23.c */; }; 114 | B73D8BCF1C98B5C500F327B7 /* epsg_inlined_24.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AE41C98B5C500F327B7 /* epsg_inlined_24.c */; }; 115 | B73D8BD01C98B5C500F327B7 /* epsg_inlined_25.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AE51C98B5C500F327B7 /* epsg_inlined_25.c */; }; 116 | B73D8BD11C98B5C500F327B7 /* epsg_inlined_26.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AE61C98B5C500F327B7 /* epsg_inlined_26.c */; }; 117 | B73D8BD21C98B5C500F327B7 /* epsg_inlined_27.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AE71C98B5C500F327B7 /* epsg_inlined_27.c */; }; 118 | B73D8BD31C98B5C500F327B7 /* epsg_inlined_28.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AE81C98B5C500F327B7 /* epsg_inlined_28.c */; }; 119 | B73D8BD41C98B5C500F327B7 /* epsg_inlined_29.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AE91C98B5C500F327B7 /* epsg_inlined_29.c */; }; 120 | B73D8BD51C98B5C500F327B7 /* epsg_inlined_30.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AEA1C98B5C500F327B7 /* epsg_inlined_30.c */; }; 121 | B73D8BD61C98B5C500F327B7 /* epsg_inlined_31.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AEB1C98B5C500F327B7 /* epsg_inlined_31.c */; }; 122 | B73D8BD71C98B5C500F327B7 /* epsg_inlined_32.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AEC1C98B5C500F327B7 /* epsg_inlined_32.c */; }; 123 | B73D8BD81C98B5C500F327B7 /* epsg_inlined_33.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AED1C98B5C500F327B7 /* epsg_inlined_33.c */; }; 124 | B73D8BD91C98B5C500F327B7 /* epsg_inlined_34.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AEE1C98B5C500F327B7 /* epsg_inlined_34.c */; }; 125 | B73D8BDA1C98B5C500F327B7 /* epsg_inlined_35.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AEF1C98B5C500F327B7 /* epsg_inlined_35.c */; }; 126 | B73D8BDB1C98B5C500F327B7 /* epsg_inlined_36.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AF01C98B5C500F327B7 /* epsg_inlined_36.c */; }; 127 | B73D8BDC1C98B5C500F327B7 /* epsg_inlined_37.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AF11C98B5C500F327B7 /* epsg_inlined_37.c */; }; 128 | B73D8BDD1C98B5C500F327B7 /* epsg_inlined_38.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AF21C98B5C500F327B7 /* epsg_inlined_38.c */; }; 129 | B73D8BDE1C98B5C500F327B7 /* epsg_inlined_39.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AF31C98B5C500F327B7 /* epsg_inlined_39.c */; }; 130 | B73D8BDF1C98B5C500F327B7 /* epsg_inlined_40.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AF41C98B5C500F327B7 /* epsg_inlined_40.c */; }; 131 | B73D8BE01C98B5C500F327B7 /* epsg_inlined_41.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AF51C98B5C500F327B7 /* epsg_inlined_41.c */; }; 132 | B73D8BE11C98B5C500F327B7 /* epsg_inlined_42.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AF61C98B5C500F327B7 /* epsg_inlined_42.c */; }; 133 | B73D8BE21C98B5C500F327B7 /* epsg_inlined_43.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AF71C98B5C500F327B7 /* epsg_inlined_43.c */; }; 134 | B73D8BE31C98B5C500F327B7 /* epsg_inlined_44.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AF81C98B5C500F327B7 /* epsg_inlined_44.c */; }; 135 | B73D8BE41C98B5C500F327B7 /* epsg_inlined_45.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AF91C98B5C500F327B7 /* epsg_inlined_45.c */; }; 136 | B73D8BE51C98B5C500F327B7 /* epsg_inlined_46.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AFA1C98B5C500F327B7 /* epsg_inlined_46.c */; }; 137 | B73D8BE61C98B5C500F327B7 /* epsg_inlined_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AFB1C98B5C500F327B7 /* epsg_inlined_extra.c */; }; 138 | B73D8BE71C98B5C500F327B7 /* epsg_inlined_prussian.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AFC1C98B5C500F327B7 /* epsg_inlined_prussian.c */; }; 139 | B73D8BE81C98B5C500F327B7 /* epsg_inlined_wgs84_00.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AFD1C98B5C500F327B7 /* epsg_inlined_wgs84_00.c */; }; 140 | B73D8BE91C98B5C500F327B7 /* epsg_inlined_wgs84_01.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8AFE1C98B5C500F327B7 /* epsg_inlined_wgs84_01.c */; }; 141 | B73D8BF31C98B5C500F327B7 /* srs_init.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8B091C98B5C500F327B7 /* srs_init.c */; }; 142 | B73D8BF41C98B5C500F327B7 /* version.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8B0B1C98B5C500F327B7 /* version.c */; }; 143 | B73D8BF71C98B5C500F327B7 /* virtualtext.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8B0F1C98B5C500F327B7 /* virtualtext.c */; }; 144 | B73D8BFA1C98B5C500F327B7 /* wfs_in.c in Sources */ = {isa = PBXBuildFile; fileRef = B73D8B131C98B5C500F327B7 /* wfs_in.c */; }; 145 | B73D8BFC1C98C25900F327B7 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = B73D8BFB1C98C25900F327B7 /* libsqlite3.tbd */; }; 146 | B7778B361CB97E3E0037A830 /* control_points.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B1F1CB97E3E0037A830 /* control_points.h */; settings = {ATTRIBUTES = (Public, ); }; }; 147 | B7778B371CB97E3E0037A830 /* debug.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B201CB97E3E0037A830 /* debug.h */; settings = {ATTRIBUTES = (Public, ); }; }; 148 | B7778B381CB97E3E0037A830 /* gaiaaux.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B211CB97E3E0037A830 /* gaiaaux.h */; settings = {ATTRIBUTES = (Public, ); }; }; 149 | B7778B391CB97E3E0037A830 /* gaiaexif.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B221CB97E3E0037A830 /* gaiaexif.h */; settings = {ATTRIBUTES = (Public, ); }; }; 150 | B7778B3A1CB97E3E0037A830 /* gaiageo.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B231CB97E3E0037A830 /* gaiageo.h */; settings = {ATTRIBUTES = (Public, ); }; }; 151 | B7778B3B1CB97E3E0037A830 /* gaiamatrix.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B241CB97E3E0037A830 /* gaiamatrix.h */; settings = {ATTRIBUTES = (Public, ); }; }; 152 | B7778B3C1CB97E3E0037A830 /* geopackage.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B251CB97E3E0037A830 /* geopackage.h */; settings = {ATTRIBUTES = (Public, ); }; }; 153 | B7778B3D1CB97E3E0037A830 /* gg_advanced.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B261CB97E3E0037A830 /* gg_advanced.h */; settings = {ATTRIBUTES = (Public, ); }; }; 154 | B7778B3E1CB97E3E0037A830 /* gg_const.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B271CB97E3E0037A830 /* gg_const.h */; settings = {ATTRIBUTES = (Public, ); }; }; 155 | B7778B3F1CB97E3E0037A830 /* gg_core.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B281CB97E3E0037A830 /* gg_core.h */; settings = {ATTRIBUTES = (Public, ); }; }; 156 | B7778B401CB97E3E0037A830 /* gg_dxf.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B291CB97E3E0037A830 /* gg_dxf.h */; settings = {ATTRIBUTES = (Public, ); }; }; 157 | B7778B411CB97E3E0037A830 /* gg_dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B2A1CB97E3E0037A830 /* gg_dynamic.h */; settings = {ATTRIBUTES = (Public, ); }; }; 158 | B7778B421CB97E3E0037A830 /* gg_formats.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B2B1CB97E3E0037A830 /* gg_formats.h */; settings = {ATTRIBUTES = (Public, ); }; }; 159 | B7778B431CB97E3E0037A830 /* gg_mbr.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B2C1CB97E3E0037A830 /* gg_mbr.h */; settings = {ATTRIBUTES = (Public, ); }; }; 160 | B7778B441CB97E3E0037A830 /* gg_structs.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B2D1CB97E3E0037A830 /* gg_structs.h */; settings = {ATTRIBUTES = (Public, ); }; }; 161 | B7778B451CB97E3E0037A830 /* gg_wfs.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B2E1CB97E3E0037A830 /* gg_wfs.h */; settings = {ATTRIBUTES = (Public, ); }; }; 162 | B7778B461CB97E3E0037A830 /* gg_xml.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B2F1CB97E3E0037A830 /* gg_xml.h */; settings = {ATTRIBUTES = (Public, ); }; }; 163 | B7778B481CB97E3E0037A830 /* sqlite.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B311CB97E3E0037A830 /* sqlite.h */; settings = {ATTRIBUTES = (Public, ); }; }; 164 | B7778B491CB97E3E0037A830 /* spatialite.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B321CB97E3E0037A830 /* spatialite.h */; settings = {ATTRIBUTES = (Public, ); }; }; 165 | B7778B4A1CB97E3E0037A830 /* spatialite_private.h in Headers */ = {isa = PBXBuildFile; fileRef = B7778B331CB97E3E0037A830 /* spatialite_private.h */; settings = {ATTRIBUTES = (Private, ); }; }; 166 | B7778B4C1CB9816D0037A830 /* sqlite3.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7778B4B1CB9816D0037A830 /* sqlite3.framework */; }; 167 | B7EC0E2D1C9A027600E02AA3 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = B7EC0E2C1C9A027600E02AA3 /* libz.tbd */; }; 168 | B7EC0E331C9A0B1200E02AA3 /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = B7EC0E2A1C9A024F00E02AA3 /* libiconv.tbd */; }; 169 | B7F96BAB1C976AD100C78357 /* geos.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7F96BA91C976AD100C78357 /* geos.framework */; }; 170 | /* End PBXBuildFile section */ 171 | 172 | /* Begin PBXFileReference section */ 173 | B732737E1C9DC28B00AB3FE9 /* prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prefix.pch; sourceTree = ""; }; 174 | B73273811C9DC56600AB3FE9 /* geos.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = geos.framework; path = Carthage/Build/iOS/geos.framework; sourceTree = ""; }; 175 | B73273821C9DC56600AB3FE9 /* proj4.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = proj4.framework; path = Carthage/Build/iOS/proj4.framework; sourceTree = ""; }; 176 | B73D8A191C98B5C500F327B7 /* alloc_cache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = alloc_cache.c; sourceTree = ""; }; 177 | B73D8A1A1C98B5C500F327B7 /* cache_aux_1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cache_aux_1.h; sourceTree = ""; }; 178 | B73D8A1B1C98B5C500F327B7 /* cache_aux_2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cache_aux_2.h; sourceTree = ""; }; 179 | B73D8A1C1C98B5C500F327B7 /* cache_aux_3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cache_aux_3.h; sourceTree = ""; }; 180 | B73D8A261C98B5C500F327B7 /* gaia_control_points.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gaia_control_points.c; sourceTree = ""; }; 181 | B73D8A271C98B5C500F327B7 /* grass_crs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = grass_crs.h; sourceTree = ""; }; 182 | B73D8A281C98B5C500F327B7 /* grass_crs3d.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = grass_crs3d.c; sourceTree = ""; }; 183 | B73D8A291C98B5C500F327B7 /* grass_georef.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = grass_georef.c; sourceTree = ""; }; 184 | B73D8A2A1C98B5C500F327B7 /* grass_georef_tps.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = grass_georef_tps.c; sourceTree = ""; }; 185 | B73D8A2E1C98B5C500F327B7 /* dxf_load_distinct.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dxf_load_distinct.c; sourceTree = ""; }; 186 | B73D8A2F1C98B5C500F327B7 /* dxf_load_mixed.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dxf_load_mixed.c; sourceTree = ""; }; 187 | B73D8A301C98B5C500F327B7 /* dxf_loader.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dxf_loader.c; sourceTree = ""; }; 188 | B73D8A311C98B5C500F327B7 /* dxf_parser.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dxf_parser.c; sourceTree = ""; }; 189 | B73D8A321C98B5C500F327B7 /* dxf_private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dxf_private.h; sourceTree = ""; }; 190 | B73D8A331C98B5C500F327B7 /* dxf_writer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dxf_writer.c; sourceTree = ""; }; 191 | B73D8A371C98B5C500F327B7 /* gg_sqlaux.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_sqlaux.c; sourceTree = ""; }; 192 | B73D8A381C98B5C500F327B7 /* gg_utf8.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_utf8.c; sourceTree = ""; }; 193 | B73D8A3C1C98B5C500F327B7 /* gaia_exif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gaia_exif.c; sourceTree = ""; }; 194 | B73D8A4D1C98B5C500F327B7 /* gg_advanced.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_advanced.c; sourceTree = ""; }; 195 | B73D8A4E1C98B5C500F327B7 /* gg_endian.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_endian.c; sourceTree = ""; }; 196 | B73D8A4F1C98B5C500F327B7 /* gg_ewkt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_ewkt.c; sourceTree = ""; }; 197 | B73D8A501C98B5C500F327B7 /* gg_extras.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_extras.c; sourceTree = ""; }; 198 | B73D8A511C98B5C500F327B7 /* gg_geodesic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_geodesic.c; sourceTree = ""; }; 199 | B73D8A521C98B5C500F327B7 /* gg_geoJSON.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_geoJSON.c; sourceTree = ""; }; 200 | B73D8A531C98B5C500F327B7 /* gg_geometries.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_geometries.c; sourceTree = ""; }; 201 | B73D8A541C98B5C500F327B7 /* gg_geoscvt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_geoscvt.c; sourceTree = ""; }; 202 | B73D8A551C98B5C500F327B7 /* gg_gml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_gml.c; sourceTree = ""; }; 203 | B73D8A561C98B5C500F327B7 /* gg_kml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_kml.c; sourceTree = ""; }; 204 | B73D8A571C98B5C500F327B7 /* gg_lwgeom.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_lwgeom.c; sourceTree = ""; }; 205 | B73D8A581C98B5C500F327B7 /* gg_matrix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_matrix.c; sourceTree = ""; }; 206 | B73D8A591C98B5C500F327B7 /* gg_relations.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_relations.c; sourceTree = ""; }; 207 | B73D8A5A1C98B5C500F327B7 /* gg_relations_ext.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_relations_ext.c; sourceTree = ""; }; 208 | B73D8A5B1C98B5C500F327B7 /* gg_shape.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_shape.c; sourceTree = ""; }; 209 | B73D8A5C1C98B5C500F327B7 /* gg_transform.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_transform.c; sourceTree = ""; }; 210 | B73D8A5D1C98B5C500F327B7 /* gg_vanuatu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_vanuatu.c; sourceTree = ""; }; 211 | B73D8A5E1C98B5C500F327B7 /* gg_voronoj.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_voronoj.c; sourceTree = ""; }; 212 | B73D8A5F1C98B5C500F327B7 /* gg_wkb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_wkb.c; sourceTree = ""; }; 213 | B73D8A601C98B5C500F327B7 /* gg_wkt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_wkt.c; sourceTree = ""; }; 214 | B73D8A611C98B5C500F327B7 /* gg_xml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gg_xml.c; sourceTree = ""; }; 215 | B73D8A7E1C98B5C500F327B7 /* gaia_cvt_gpkg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gaia_cvt_gpkg.c; sourceTree = ""; }; 216 | B73D8A7F1C98B5C500F327B7 /* geopackage_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = geopackage_internal.h; sourceTree = ""; }; 217 | B73D8A801C98B5C500F327B7 /* gpkg_add_geometry_triggers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gpkg_add_geometry_triggers.c; sourceTree = ""; }; 218 | B73D8A811C98B5C500F327B7 /* gpkg_add_spatial_index.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gpkg_add_spatial_index.c; sourceTree = ""; }; 219 | B73D8A821C98B5C500F327B7 /* gpkg_add_tile_triggers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gpkg_add_tile_triggers.c; sourceTree = ""; }; 220 | B73D8A831C98B5C500F327B7 /* gpkg_get_normal_row.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gpkg_get_normal_row.c; sourceTree = ""; }; 221 | B73D8A841C98B5C500F327B7 /* gpkg_get_normal_zoom.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gpkg_get_normal_zoom.c; sourceTree = ""; }; 222 | B73D8A851C98B5C500F327B7 /* gpkgAddGeometryColumn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gpkgAddGeometryColumn.c; sourceTree = ""; }; 223 | B73D8A861C98B5C500F327B7 /* gpkgBinary.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gpkgBinary.c; sourceTree = ""; }; 224 | B73D8A871C98B5C500F327B7 /* gpkgCreateBaseTables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gpkgCreateBaseTables.c; sourceTree = ""; }; 225 | B73D8A881C98B5C500F327B7 /* gpkgCreateTilesTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gpkgCreateTilesTable.c; sourceTree = ""; }; 226 | B73D8A891C98B5C500F327B7 /* gpkgCreateTilesZoomLevel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gpkgCreateTilesZoomLevel.c; sourceTree = ""; }; 227 | B73D8A8A1C98B5C500F327B7 /* gpkgGetImageType.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gpkgGetImageType.c; sourceTree = ""; }; 228 | B73D8A8B1C98B5C500F327B7 /* gpkgInsertEpsgSRID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gpkgInsertEpsgSRID.c; sourceTree = ""; }; 229 | B73D8A8C1C98B5C500F327B7 /* gpkgMakePoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gpkgMakePoint.c; sourceTree = ""; }; 230 | B73D8AAB1C98B5C500F327B7 /* gaia_md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gaia_md5.c; sourceTree = ""; }; 231 | B73D8AAE1C98B5C500F327B7 /* md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = md5.c; sourceTree = ""; }; 232 | B73D8AAF1C98B5C500F327B7 /* md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5.h; sourceTree = ""; }; 233 | B73D8AB31C98B5C500F327B7 /* shapefiles.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = shapefiles.c; sourceTree = ""; }; 234 | B73D8AB41C98B5C500F327B7 /* validator.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = validator.c; sourceTree = ""; }; 235 | B73D8AB61C98B5C500F327B7 /* extra_tables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = extra_tables.c; sourceTree = ""; }; 236 | B73D8AB91C98B5C500F327B7 /* mbrcache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mbrcache.c; sourceTree = ""; }; 237 | B73D8ABA1C98B5C500F327B7 /* metatables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = metatables.c; sourceTree = ""; }; 238 | B73D8ABB1C98B5C500F327B7 /* se_helpers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = se_helpers.c; sourceTree = ""; }; 239 | B73D8ABC1C98B5C500F327B7 /* spatialite.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = spatialite.c; sourceTree = ""; }; 240 | B73D8ABD1C98B5C500F327B7 /* spatialite_init.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = spatialite_init.c; sourceTree = ""; }; 241 | B73D8ABE1C98B5C500F327B7 /* srid_aux.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = srid_aux.c; sourceTree = ""; }; 242 | B73D8ABF1C98B5C500F327B7 /* statistics.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = statistics.c; sourceTree = ""; }; 243 | B73D8AC01C98B5C500F327B7 /* table_cloner.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = table_cloner.c; sourceTree = ""; }; 244 | B73D8AC11C98B5C500F327B7 /* virtualbbox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = virtualbbox.c; sourceTree = ""; }; 245 | B73D8AC21C98B5C500F327B7 /* virtualdbf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = virtualdbf.c; sourceTree = ""; }; 246 | B73D8AC31C98B5C500F327B7 /* virtualelementary.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = virtualelementary.c; sourceTree = ""; }; 247 | B73D8AC41C98B5C500F327B7 /* virtualfdo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = virtualfdo.c; sourceTree = ""; }; 248 | B73D8AC51C98B5C500F327B7 /* virtualgpkg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = virtualgpkg.c; sourceTree = ""; }; 249 | B73D8AC61C98B5C500F327B7 /* virtualnetwork.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = virtualnetwork.c; sourceTree = ""; }; 250 | B73D8AC71C98B5C500F327B7 /* virtualshape.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = virtualshape.c; sourceTree = ""; }; 251 | B73D8AC81C98B5C500F327B7 /* virtualspatialindex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = virtualspatialindex.c; sourceTree = ""; }; 252 | B73D8AC91C98B5C500F327B7 /* virtualXL.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = virtualXL.c; sourceTree = ""; }; 253 | B73D8ACA1C98B5C500F327B7 /* virtualxpath.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = virtualxpath.c; sourceTree = ""; }; 254 | B73D8ACC1C98B5C500F327B7 /* epsg_inlined_00.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_00.c; sourceTree = ""; }; 255 | B73D8ACD1C98B5C500F327B7 /* epsg_inlined_01.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_01.c; sourceTree = ""; }; 256 | B73D8ACE1C98B5C500F327B7 /* epsg_inlined_02.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_02.c; sourceTree = ""; }; 257 | B73D8ACF1C98B5C500F327B7 /* epsg_inlined_03.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_03.c; sourceTree = ""; }; 258 | B73D8AD01C98B5C500F327B7 /* epsg_inlined_04.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_04.c; sourceTree = ""; }; 259 | B73D8AD11C98B5C500F327B7 /* epsg_inlined_05.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_05.c; sourceTree = ""; }; 260 | B73D8AD21C98B5C500F327B7 /* epsg_inlined_06.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_06.c; sourceTree = ""; }; 261 | B73D8AD31C98B5C500F327B7 /* epsg_inlined_07.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_07.c; sourceTree = ""; }; 262 | B73D8AD41C98B5C500F327B7 /* epsg_inlined_08.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_08.c; sourceTree = ""; }; 263 | B73D8AD51C98B5C500F327B7 /* epsg_inlined_09.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_09.c; sourceTree = ""; }; 264 | B73D8AD61C98B5C500F327B7 /* epsg_inlined_10.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_10.c; sourceTree = ""; }; 265 | B73D8AD71C98B5C500F327B7 /* epsg_inlined_11.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_11.c; sourceTree = ""; }; 266 | B73D8AD81C98B5C500F327B7 /* epsg_inlined_12.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_12.c; sourceTree = ""; }; 267 | B73D8AD91C98B5C500F327B7 /* epsg_inlined_13.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_13.c; sourceTree = ""; }; 268 | B73D8ADA1C98B5C500F327B7 /* epsg_inlined_14.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_14.c; sourceTree = ""; }; 269 | B73D8ADB1C98B5C500F327B7 /* epsg_inlined_15.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_15.c; sourceTree = ""; }; 270 | B73D8ADC1C98B5C500F327B7 /* epsg_inlined_16.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_16.c; sourceTree = ""; }; 271 | B73D8ADD1C98B5C500F327B7 /* epsg_inlined_17.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_17.c; sourceTree = ""; }; 272 | B73D8ADE1C98B5C500F327B7 /* epsg_inlined_18.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_18.c; sourceTree = ""; }; 273 | B73D8ADF1C98B5C500F327B7 /* epsg_inlined_19.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_19.c; sourceTree = ""; }; 274 | B73D8AE01C98B5C500F327B7 /* epsg_inlined_20.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_20.c; sourceTree = ""; }; 275 | B73D8AE11C98B5C500F327B7 /* epsg_inlined_21.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_21.c; sourceTree = ""; }; 276 | B73D8AE21C98B5C500F327B7 /* epsg_inlined_22.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_22.c; sourceTree = ""; }; 277 | B73D8AE31C98B5C500F327B7 /* epsg_inlined_23.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_23.c; sourceTree = ""; }; 278 | B73D8AE41C98B5C500F327B7 /* epsg_inlined_24.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_24.c; sourceTree = ""; }; 279 | B73D8AE51C98B5C500F327B7 /* epsg_inlined_25.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_25.c; sourceTree = ""; }; 280 | B73D8AE61C98B5C500F327B7 /* epsg_inlined_26.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_26.c; sourceTree = ""; }; 281 | B73D8AE71C98B5C500F327B7 /* epsg_inlined_27.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_27.c; sourceTree = ""; }; 282 | B73D8AE81C98B5C500F327B7 /* epsg_inlined_28.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_28.c; sourceTree = ""; }; 283 | B73D8AE91C98B5C500F327B7 /* epsg_inlined_29.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_29.c; sourceTree = ""; }; 284 | B73D8AEA1C98B5C500F327B7 /* epsg_inlined_30.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_30.c; sourceTree = ""; }; 285 | B73D8AEB1C98B5C500F327B7 /* epsg_inlined_31.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_31.c; sourceTree = ""; }; 286 | B73D8AEC1C98B5C500F327B7 /* epsg_inlined_32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_32.c; sourceTree = ""; }; 287 | B73D8AED1C98B5C500F327B7 /* epsg_inlined_33.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_33.c; sourceTree = ""; }; 288 | B73D8AEE1C98B5C500F327B7 /* epsg_inlined_34.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_34.c; sourceTree = ""; }; 289 | B73D8AEF1C98B5C500F327B7 /* epsg_inlined_35.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_35.c; sourceTree = ""; }; 290 | B73D8AF01C98B5C500F327B7 /* epsg_inlined_36.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_36.c; sourceTree = ""; }; 291 | B73D8AF11C98B5C500F327B7 /* epsg_inlined_37.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_37.c; sourceTree = ""; }; 292 | B73D8AF21C98B5C500F327B7 /* epsg_inlined_38.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_38.c; sourceTree = ""; }; 293 | B73D8AF31C98B5C500F327B7 /* epsg_inlined_39.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_39.c; sourceTree = ""; }; 294 | B73D8AF41C98B5C500F327B7 /* epsg_inlined_40.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_40.c; sourceTree = ""; }; 295 | B73D8AF51C98B5C500F327B7 /* epsg_inlined_41.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_41.c; sourceTree = ""; }; 296 | B73D8AF61C98B5C500F327B7 /* epsg_inlined_42.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_42.c; sourceTree = ""; }; 297 | B73D8AF71C98B5C500F327B7 /* epsg_inlined_43.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_43.c; sourceTree = ""; }; 298 | B73D8AF81C98B5C500F327B7 /* epsg_inlined_44.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_44.c; sourceTree = ""; }; 299 | B73D8AF91C98B5C500F327B7 /* epsg_inlined_45.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_45.c; sourceTree = ""; }; 300 | B73D8AFA1C98B5C500F327B7 /* epsg_inlined_46.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_46.c; sourceTree = ""; }; 301 | B73D8AFB1C98B5C500F327B7 /* epsg_inlined_extra.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_extra.c; sourceTree = ""; }; 302 | B73D8AFC1C98B5C500F327B7 /* epsg_inlined_prussian.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_prussian.c; sourceTree = ""; }; 303 | B73D8AFD1C98B5C500F327B7 /* epsg_inlined_wgs84_00.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_wgs84_00.c; sourceTree = ""; }; 304 | B73D8AFE1C98B5C500F327B7 /* epsg_inlined_wgs84_01.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = epsg_inlined_wgs84_01.c; sourceTree = ""; }; 305 | B73D8B091C98B5C500F327B7 /* srs_init.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = srs_init.c; sourceTree = ""; }; 306 | B73D8B0B1C98B5C500F327B7 /* version.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = version.c; sourceTree = ""; }; 307 | B73D8B0F1C98B5C500F327B7 /* virtualtext.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = virtualtext.c; sourceTree = ""; }; 308 | B73D8B131C98B5C500F327B7 /* wfs_in.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = wfs_in.c; sourceTree = ""; }; 309 | B73D8BFB1C98C25900F327B7 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; }; 310 | B7778B1F1CB97E3E0037A830 /* control_points.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = control_points.h; sourceTree = ""; }; 311 | B7778B201CB97E3E0037A830 /* debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = debug.h; sourceTree = ""; }; 312 | B7778B211CB97E3E0037A830 /* gaiaaux.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gaiaaux.h; sourceTree = ""; }; 313 | B7778B221CB97E3E0037A830 /* gaiaexif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gaiaexif.h; sourceTree = ""; }; 314 | B7778B231CB97E3E0037A830 /* gaiageo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gaiageo.h; sourceTree = ""; }; 315 | B7778B241CB97E3E0037A830 /* gaiamatrix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gaiamatrix.h; sourceTree = ""; }; 316 | B7778B251CB97E3E0037A830 /* geopackage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = geopackage.h; sourceTree = ""; }; 317 | B7778B261CB97E3E0037A830 /* gg_advanced.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gg_advanced.h; sourceTree = ""; }; 318 | B7778B271CB97E3E0037A830 /* gg_const.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gg_const.h; sourceTree = ""; }; 319 | B7778B281CB97E3E0037A830 /* gg_core.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gg_core.h; sourceTree = ""; }; 320 | B7778B291CB97E3E0037A830 /* gg_dxf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gg_dxf.h; sourceTree = ""; }; 321 | B7778B2A1CB97E3E0037A830 /* gg_dynamic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gg_dynamic.h; sourceTree = ""; }; 322 | B7778B2B1CB97E3E0037A830 /* gg_formats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gg_formats.h; sourceTree = ""; }; 323 | B7778B2C1CB97E3E0037A830 /* gg_mbr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gg_mbr.h; sourceTree = ""; }; 324 | B7778B2D1CB97E3E0037A830 /* gg_structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gg_structs.h; sourceTree = ""; }; 325 | B7778B2E1CB97E3E0037A830 /* gg_wfs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gg_wfs.h; sourceTree = ""; }; 326 | B7778B2F1CB97E3E0037A830 /* gg_xml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gg_xml.h; sourceTree = ""; }; 327 | B7778B311CB97E3E0037A830 /* sqlite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sqlite.h; sourceTree = ""; }; 328 | B7778B321CB97E3E0037A830 /* spatialite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spatialite.h; sourceTree = ""; }; 329 | B7778B331CB97E3E0037A830 /* spatialite_private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spatialite_private.h; sourceTree = ""; }; 330 | B7778B4B1CB9816D0037A830 /* sqlite3.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = sqlite3.framework; path = Carthage/Build/iOS/sqlite3.framework; sourceTree = ""; }; 331 | B7EC0E2A1C9A024F00E02AA3 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; }; 332 | B7EC0E2C1C9A027600E02AA3 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; }; 333 | B7F969B61C97493F00C78357 /* spatialite.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = spatialite.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 334 | B7F96BA61C974B8800C78357 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 335 | B7F96BA91C976AD100C78357 /* geos.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = geos.framework; path = Carthage/Build/iOS/geos.framework; sourceTree = ""; }; 336 | B7F96BAA1C976AD100C78357 /* proj4.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = proj4.framework; path = Carthage/Build/iOS/proj4.framework; sourceTree = ""; }; 337 | /* End PBXFileReference section */ 338 | 339 | /* Begin PBXFrameworksBuildPhase section */ 340 | B7F969B21C97493F00C78357 /* Frameworks */ = { 341 | isa = PBXFrameworksBuildPhase; 342 | buildActionMask = 2147483647; 343 | files = ( 344 | B7EC0E331C9A0B1200E02AA3 /* libiconv.tbd in Frameworks */, 345 | B7EC0E2D1C9A027600E02AA3 /* libz.tbd in Frameworks */, 346 | B73D8BFC1C98C25900F327B7 /* libsqlite3.tbd in Frameworks */, 347 | B73273841C9DC56600AB3FE9 /* proj4.framework in Frameworks */, 348 | B7778B4C1CB9816D0037A830 /* sqlite3.framework in Frameworks */, 349 | B7F96BAB1C976AD100C78357 /* geos.framework in Frameworks */, 350 | ); 351 | runOnlyForDeploymentPostprocessing = 0; 352 | }; 353 | /* End PBXFrameworksBuildPhase section */ 354 | 355 | /* Begin PBXGroup section */ 356 | B73273801C9DC54A00AB3FE9 /* Frameworks */ = { 357 | isa = PBXGroup; 358 | children = ( 359 | B7778B4B1CB9816D0037A830 /* sqlite3.framework */, 360 | B73273811C9DC56600AB3FE9 /* geos.framework */, 361 | B73273821C9DC56600AB3FE9 /* proj4.framework */, 362 | ); 363 | name = Frameworks; 364 | sourceTree = ""; 365 | }; 366 | B73D8A171C98B5C500F327B7 /* src */ = { 367 | isa = PBXGroup; 368 | children = ( 369 | B73D8A181C98B5C500F327B7 /* connection_cache */, 370 | B73D8A241C98B5C500F327B7 /* control_points */, 371 | B73D8A2D1C98B5C500F327B7 /* dxf */, 372 | B73D8A361C98B5C500F327B7 /* gaiaaux */, 373 | B73D8A3B1C98B5C500F327B7 /* gaiaexif */, 374 | B73D8A3F1C98B5C500F327B7 /* gaiageo */, 375 | B73D8A7D1C98B5C500F327B7 /* geopackage */, 376 | B73D8AAA1C98B5C500F327B7 /* md5 */, 377 | B73D8AB01C98B5C500F327B7 /* shapefiles */, 378 | B73D8AB51C98B5C500F327B7 /* spatialite */, 379 | B73D8ACB1C98B5C500F327B7 /* srsinit */, 380 | B73D8B0A1C98B5C500F327B7 /* versioninfo */, 381 | B73D8B0C1C98B5C500F327B7 /* virtualtext */, 382 | B73D8B101C98B5C500F327B7 /* wfs */, 383 | ); 384 | name = src; 385 | path = spatialite/src; 386 | sourceTree = ""; 387 | }; 388 | B73D8A181C98B5C500F327B7 /* connection_cache */ = { 389 | isa = PBXGroup; 390 | children = ( 391 | B73D8A191C98B5C500F327B7 /* alloc_cache.c */, 392 | B73D8A1A1C98B5C500F327B7 /* cache_aux_1.h */, 393 | B73D8A1B1C98B5C500F327B7 /* cache_aux_2.h */, 394 | B73D8A1C1C98B5C500F327B7 /* cache_aux_3.h */, 395 | ); 396 | path = connection_cache; 397 | sourceTree = ""; 398 | }; 399 | B73D8A241C98B5C500F327B7 /* control_points */ = { 400 | isa = PBXGroup; 401 | children = ( 402 | B73D8A261C98B5C500F327B7 /* gaia_control_points.c */, 403 | B73D8A271C98B5C500F327B7 /* grass_crs.h */, 404 | B73D8A281C98B5C500F327B7 /* grass_crs3d.c */, 405 | B73D8A291C98B5C500F327B7 /* grass_georef.c */, 406 | B73D8A2A1C98B5C500F327B7 /* grass_georef_tps.c */, 407 | ); 408 | path = control_points; 409 | sourceTree = ""; 410 | }; 411 | B73D8A2D1C98B5C500F327B7 /* dxf */ = { 412 | isa = PBXGroup; 413 | children = ( 414 | B73D8A2E1C98B5C500F327B7 /* dxf_load_distinct.c */, 415 | B73D8A2F1C98B5C500F327B7 /* dxf_load_mixed.c */, 416 | B73D8A301C98B5C500F327B7 /* dxf_loader.c */, 417 | B73D8A311C98B5C500F327B7 /* dxf_parser.c */, 418 | B73D8A321C98B5C500F327B7 /* dxf_private.h */, 419 | B73D8A331C98B5C500F327B7 /* dxf_writer.c */, 420 | ); 421 | path = dxf; 422 | sourceTree = ""; 423 | }; 424 | B73D8A361C98B5C500F327B7 /* gaiaaux */ = { 425 | isa = PBXGroup; 426 | children = ( 427 | B73D8A371C98B5C500F327B7 /* gg_sqlaux.c */, 428 | B73D8A381C98B5C500F327B7 /* gg_utf8.c */, 429 | ); 430 | path = gaiaaux; 431 | sourceTree = ""; 432 | }; 433 | B73D8A3B1C98B5C500F327B7 /* gaiaexif */ = { 434 | isa = PBXGroup; 435 | children = ( 436 | B73D8A3C1C98B5C500F327B7 /* gaia_exif.c */, 437 | ); 438 | path = gaiaexif; 439 | sourceTree = ""; 440 | }; 441 | B73D8A3F1C98B5C500F327B7 /* gaiageo */ = { 442 | isa = PBXGroup; 443 | children = ( 444 | B73D8A4D1C98B5C500F327B7 /* gg_advanced.c */, 445 | B73D8A4E1C98B5C500F327B7 /* gg_endian.c */, 446 | B73D8A4F1C98B5C500F327B7 /* gg_ewkt.c */, 447 | B73D8A501C98B5C500F327B7 /* gg_extras.c */, 448 | B73D8A511C98B5C500F327B7 /* gg_geodesic.c */, 449 | B73D8A521C98B5C500F327B7 /* gg_geoJSON.c */, 450 | B73D8A531C98B5C500F327B7 /* gg_geometries.c */, 451 | B73D8A541C98B5C500F327B7 /* gg_geoscvt.c */, 452 | B73D8A551C98B5C500F327B7 /* gg_gml.c */, 453 | B73D8A561C98B5C500F327B7 /* gg_kml.c */, 454 | B73D8A571C98B5C500F327B7 /* gg_lwgeom.c */, 455 | B73D8A581C98B5C500F327B7 /* gg_matrix.c */, 456 | B73D8A591C98B5C500F327B7 /* gg_relations.c */, 457 | B73D8A5A1C98B5C500F327B7 /* gg_relations_ext.c */, 458 | B73D8A5B1C98B5C500F327B7 /* gg_shape.c */, 459 | B73D8A5C1C98B5C500F327B7 /* gg_transform.c */, 460 | B73D8A5D1C98B5C500F327B7 /* gg_vanuatu.c */, 461 | B73D8A5E1C98B5C500F327B7 /* gg_voronoj.c */, 462 | B73D8A5F1C98B5C500F327B7 /* gg_wkb.c */, 463 | B73D8A601C98B5C500F327B7 /* gg_wkt.c */, 464 | B73D8A611C98B5C500F327B7 /* gg_xml.c */, 465 | ); 466 | path = gaiageo; 467 | sourceTree = ""; 468 | }; 469 | B73D8A7D1C98B5C500F327B7 /* geopackage */ = { 470 | isa = PBXGroup; 471 | children = ( 472 | B73D8A7E1C98B5C500F327B7 /* gaia_cvt_gpkg.c */, 473 | B73D8A7F1C98B5C500F327B7 /* geopackage_internal.h */, 474 | B73D8A801C98B5C500F327B7 /* gpkg_add_geometry_triggers.c */, 475 | B73D8A811C98B5C500F327B7 /* gpkg_add_spatial_index.c */, 476 | B73D8A821C98B5C500F327B7 /* gpkg_add_tile_triggers.c */, 477 | B73D8A831C98B5C500F327B7 /* gpkg_get_normal_row.c */, 478 | B73D8A841C98B5C500F327B7 /* gpkg_get_normal_zoom.c */, 479 | B73D8A851C98B5C500F327B7 /* gpkgAddGeometryColumn.c */, 480 | B73D8A861C98B5C500F327B7 /* gpkgBinary.c */, 481 | B73D8A871C98B5C500F327B7 /* gpkgCreateBaseTables.c */, 482 | B73D8A881C98B5C500F327B7 /* gpkgCreateTilesTable.c */, 483 | B73D8A891C98B5C500F327B7 /* gpkgCreateTilesZoomLevel.c */, 484 | B73D8A8A1C98B5C500F327B7 /* gpkgGetImageType.c */, 485 | B73D8A8B1C98B5C500F327B7 /* gpkgInsertEpsgSRID.c */, 486 | B73D8A8C1C98B5C500F327B7 /* gpkgMakePoint.c */, 487 | ); 488 | path = geopackage; 489 | sourceTree = ""; 490 | }; 491 | B73D8AAA1C98B5C500F327B7 /* md5 */ = { 492 | isa = PBXGroup; 493 | children = ( 494 | B73D8AAB1C98B5C500F327B7 /* gaia_md5.c */, 495 | B73D8AAE1C98B5C500F327B7 /* md5.c */, 496 | B73D8AAF1C98B5C500F327B7 /* md5.h */, 497 | ); 498 | path = md5; 499 | sourceTree = ""; 500 | }; 501 | B73D8AB01C98B5C500F327B7 /* shapefiles */ = { 502 | isa = PBXGroup; 503 | children = ( 504 | B73D8AB31C98B5C500F327B7 /* shapefiles.c */, 505 | B73D8AB41C98B5C500F327B7 /* validator.c */, 506 | ); 507 | path = shapefiles; 508 | sourceTree = ""; 509 | }; 510 | B73D8AB51C98B5C500F327B7 /* spatialite */ = { 511 | isa = PBXGroup; 512 | children = ( 513 | B73D8AB61C98B5C500F327B7 /* extra_tables.c */, 514 | B73D8AB91C98B5C500F327B7 /* mbrcache.c */, 515 | B73D8ABA1C98B5C500F327B7 /* metatables.c */, 516 | B73D8ABB1C98B5C500F327B7 /* se_helpers.c */, 517 | B73D8ABC1C98B5C500F327B7 /* spatialite.c */, 518 | B73D8ABD1C98B5C500F327B7 /* spatialite_init.c */, 519 | B73D8ABE1C98B5C500F327B7 /* srid_aux.c */, 520 | B73D8ABF1C98B5C500F327B7 /* statistics.c */, 521 | B73D8AC01C98B5C500F327B7 /* table_cloner.c */, 522 | B73D8AC11C98B5C500F327B7 /* virtualbbox.c */, 523 | B73D8AC21C98B5C500F327B7 /* virtualdbf.c */, 524 | B73D8AC31C98B5C500F327B7 /* virtualelementary.c */, 525 | B73D8AC41C98B5C500F327B7 /* virtualfdo.c */, 526 | B73D8AC51C98B5C500F327B7 /* virtualgpkg.c */, 527 | B73D8AC61C98B5C500F327B7 /* virtualnetwork.c */, 528 | B73D8AC71C98B5C500F327B7 /* virtualshape.c */, 529 | B73D8AC81C98B5C500F327B7 /* virtualspatialindex.c */, 530 | B73D8AC91C98B5C500F327B7 /* virtualXL.c */, 531 | B73D8ACA1C98B5C500F327B7 /* virtualxpath.c */, 532 | ); 533 | path = spatialite; 534 | sourceTree = ""; 535 | }; 536 | B73D8ACB1C98B5C500F327B7 /* srsinit */ = { 537 | isa = PBXGroup; 538 | children = ( 539 | B73D8ACC1C98B5C500F327B7 /* epsg_inlined_00.c */, 540 | B73D8ACD1C98B5C500F327B7 /* epsg_inlined_01.c */, 541 | B73D8ACE1C98B5C500F327B7 /* epsg_inlined_02.c */, 542 | B73D8ACF1C98B5C500F327B7 /* epsg_inlined_03.c */, 543 | B73D8AD01C98B5C500F327B7 /* epsg_inlined_04.c */, 544 | B73D8AD11C98B5C500F327B7 /* epsg_inlined_05.c */, 545 | B73D8AD21C98B5C500F327B7 /* epsg_inlined_06.c */, 546 | B73D8AD31C98B5C500F327B7 /* epsg_inlined_07.c */, 547 | B73D8AD41C98B5C500F327B7 /* epsg_inlined_08.c */, 548 | B73D8AD51C98B5C500F327B7 /* epsg_inlined_09.c */, 549 | B73D8AD61C98B5C500F327B7 /* epsg_inlined_10.c */, 550 | B73D8AD71C98B5C500F327B7 /* epsg_inlined_11.c */, 551 | B73D8AD81C98B5C500F327B7 /* epsg_inlined_12.c */, 552 | B73D8AD91C98B5C500F327B7 /* epsg_inlined_13.c */, 553 | B73D8ADA1C98B5C500F327B7 /* epsg_inlined_14.c */, 554 | B73D8ADB1C98B5C500F327B7 /* epsg_inlined_15.c */, 555 | B73D8ADC1C98B5C500F327B7 /* epsg_inlined_16.c */, 556 | B73D8ADD1C98B5C500F327B7 /* epsg_inlined_17.c */, 557 | B73D8ADE1C98B5C500F327B7 /* epsg_inlined_18.c */, 558 | B73D8ADF1C98B5C500F327B7 /* epsg_inlined_19.c */, 559 | B73D8AE01C98B5C500F327B7 /* epsg_inlined_20.c */, 560 | B73D8AE11C98B5C500F327B7 /* epsg_inlined_21.c */, 561 | B73D8AE21C98B5C500F327B7 /* epsg_inlined_22.c */, 562 | B73D8AE31C98B5C500F327B7 /* epsg_inlined_23.c */, 563 | B73D8AE41C98B5C500F327B7 /* epsg_inlined_24.c */, 564 | B73D8AE51C98B5C500F327B7 /* epsg_inlined_25.c */, 565 | B73D8AE61C98B5C500F327B7 /* epsg_inlined_26.c */, 566 | B73D8AE71C98B5C500F327B7 /* epsg_inlined_27.c */, 567 | B73D8AE81C98B5C500F327B7 /* epsg_inlined_28.c */, 568 | B73D8AE91C98B5C500F327B7 /* epsg_inlined_29.c */, 569 | B73D8AEA1C98B5C500F327B7 /* epsg_inlined_30.c */, 570 | B73D8AEB1C98B5C500F327B7 /* epsg_inlined_31.c */, 571 | B73D8AEC1C98B5C500F327B7 /* epsg_inlined_32.c */, 572 | B73D8AED1C98B5C500F327B7 /* epsg_inlined_33.c */, 573 | B73D8AEE1C98B5C500F327B7 /* epsg_inlined_34.c */, 574 | B73D8AEF1C98B5C500F327B7 /* epsg_inlined_35.c */, 575 | B73D8AF01C98B5C500F327B7 /* epsg_inlined_36.c */, 576 | B73D8AF11C98B5C500F327B7 /* epsg_inlined_37.c */, 577 | B73D8AF21C98B5C500F327B7 /* epsg_inlined_38.c */, 578 | B73D8AF31C98B5C500F327B7 /* epsg_inlined_39.c */, 579 | B73D8AF41C98B5C500F327B7 /* epsg_inlined_40.c */, 580 | B73D8AF51C98B5C500F327B7 /* epsg_inlined_41.c */, 581 | B73D8AF61C98B5C500F327B7 /* epsg_inlined_42.c */, 582 | B73D8AF71C98B5C500F327B7 /* epsg_inlined_43.c */, 583 | B73D8AF81C98B5C500F327B7 /* epsg_inlined_44.c */, 584 | B73D8AF91C98B5C500F327B7 /* epsg_inlined_45.c */, 585 | B73D8AFA1C98B5C500F327B7 /* epsg_inlined_46.c */, 586 | B73D8AFB1C98B5C500F327B7 /* epsg_inlined_extra.c */, 587 | B73D8AFC1C98B5C500F327B7 /* epsg_inlined_prussian.c */, 588 | B73D8AFD1C98B5C500F327B7 /* epsg_inlined_wgs84_00.c */, 589 | B73D8AFE1C98B5C500F327B7 /* epsg_inlined_wgs84_01.c */, 590 | B73D8B091C98B5C500F327B7 /* srs_init.c */, 591 | ); 592 | path = srsinit; 593 | sourceTree = ""; 594 | }; 595 | B73D8B0A1C98B5C500F327B7 /* versioninfo */ = { 596 | isa = PBXGroup; 597 | children = ( 598 | B73D8B0B1C98B5C500F327B7 /* version.c */, 599 | ); 600 | path = versioninfo; 601 | sourceTree = ""; 602 | }; 603 | B73D8B0C1C98B5C500F327B7 /* virtualtext */ = { 604 | isa = PBXGroup; 605 | children = ( 606 | B73D8B0F1C98B5C500F327B7 /* virtualtext.c */, 607 | ); 608 | path = virtualtext; 609 | sourceTree = ""; 610 | }; 611 | B73D8B101C98B5C500F327B7 /* wfs */ = { 612 | isa = PBXGroup; 613 | children = ( 614 | B73D8B131C98B5C500F327B7 /* wfs_in.c */, 615 | ); 616 | path = wfs; 617 | sourceTree = ""; 618 | }; 619 | B7778B1B1CB97E3E0037A830 /* headers */ = { 620 | isa = PBXGroup; 621 | children = ( 622 | B7778B1E1CB97E3E0037A830 /* spatialite */, 623 | B7778B321CB97E3E0037A830 /* spatialite.h */, 624 | B7778B331CB97E3E0037A830 /* spatialite_private.h */, 625 | ); 626 | name = headers; 627 | path = spatialite/src/headers; 628 | sourceTree = ""; 629 | }; 630 | B7778B1E1CB97E3E0037A830 /* spatialite */ = { 631 | isa = PBXGroup; 632 | children = ( 633 | B7778B1F1CB97E3E0037A830 /* control_points.h */, 634 | B7778B201CB97E3E0037A830 /* debug.h */, 635 | B7778B211CB97E3E0037A830 /* gaiaaux.h */, 636 | B7778B221CB97E3E0037A830 /* gaiaexif.h */, 637 | B7778B231CB97E3E0037A830 /* gaiageo.h */, 638 | B7778B241CB97E3E0037A830 /* gaiamatrix.h */, 639 | B7778B251CB97E3E0037A830 /* geopackage.h */, 640 | B7778B261CB97E3E0037A830 /* gg_advanced.h */, 641 | B7778B271CB97E3E0037A830 /* gg_const.h */, 642 | B7778B281CB97E3E0037A830 /* gg_core.h */, 643 | B7778B291CB97E3E0037A830 /* gg_dxf.h */, 644 | B7778B2A1CB97E3E0037A830 /* gg_dynamic.h */, 645 | B7778B2B1CB97E3E0037A830 /* gg_formats.h */, 646 | B7778B2C1CB97E3E0037A830 /* gg_mbr.h */, 647 | B7778B2D1CB97E3E0037A830 /* gg_structs.h */, 648 | B7778B2E1CB97E3E0037A830 /* gg_wfs.h */, 649 | B7778B2F1CB97E3E0037A830 /* gg_xml.h */, 650 | B7778B311CB97E3E0037A830 /* sqlite.h */, 651 | ); 652 | path = spatialite; 653 | sourceTree = ""; 654 | }; 655 | B7F969AC1C97493F00C78357 = { 656 | isa = PBXGroup; 657 | children = ( 658 | B7778B1B1CB97E3E0037A830 /* headers */, 659 | B73D8A171C98B5C500F327B7 /* src */, 660 | B7F96BA81C976AC000C78357 /* dependencies */, 661 | B7F96BA51C974B8800C78357 /* resources */, 662 | B73273801C9DC54A00AB3FE9 /* Frameworks */, 663 | B7F969B71C97493F00C78357 /* Products */, 664 | ); 665 | sourceTree = ""; 666 | }; 667 | B7F969B71C97493F00C78357 /* Products */ = { 668 | isa = PBXGroup; 669 | children = ( 670 | B7F969B61C97493F00C78357 /* spatialite.framework */, 671 | ); 672 | name = Products; 673 | sourceTree = ""; 674 | }; 675 | B7F96BA51C974B8800C78357 /* resources */ = { 676 | isa = PBXGroup; 677 | children = ( 678 | B732737E1C9DC28B00AB3FE9 /* prefix.pch */, 679 | B7F96BA61C974B8800C78357 /* Info.plist */, 680 | ); 681 | path = resources; 682 | sourceTree = ""; 683 | }; 684 | B7F96BA81C976AC000C78357 /* dependencies */ = { 685 | isa = PBXGroup; 686 | children = ( 687 | B7EC0E2A1C9A024F00E02AA3 /* libiconv.tbd */, 688 | B73D8BFB1C98C25900F327B7 /* libsqlite3.tbd */, 689 | B7EC0E2C1C9A027600E02AA3 /* libz.tbd */, 690 | B7F96BA91C976AD100C78357 /* geos.framework */, 691 | B7F96BAA1C976AD100C78357 /* proj4.framework */, 692 | ); 693 | name = dependencies; 694 | sourceTree = ""; 695 | }; 696 | /* End PBXGroup section */ 697 | 698 | /* Begin PBXHeadersBuildPhase section */ 699 | B7F969B31C97493F00C78357 /* Headers */ = { 700 | isa = PBXHeadersBuildPhase; 701 | buildActionMask = 2147483647; 702 | files = ( 703 | B7778B411CB97E3E0037A830 /* gg_dynamic.h in Headers */, 704 | B7778B491CB97E3E0037A830 /* spatialite.h in Headers */, 705 | B73D8B9D1C98B5C500F327B7 /* md5.h in Headers */, 706 | B7778B481CB97E3E0037A830 /* sqlite.h in Headers */, 707 | B7778B3F1CB97E3E0037A830 /* gg_core.h in Headers */, 708 | B732737F1C9DC28B00AB3FE9 /* prefix.pch in Headers */, 709 | B7778B391CB97E3E0037A830 /* gaiaexif.h in Headers */, 710 | B73D8B701C98B5C500F327B7 /* geopackage_internal.h in Headers */, 711 | B7778B431CB97E3E0037A830 /* gg_mbr.h in Headers */, 712 | B73D8B201C98B5C500F327B7 /* grass_crs.h in Headers */, 713 | B7778B3E1CB97E3E0037A830 /* gg_const.h in Headers */, 714 | B7778B401CB97E3E0037A830 /* gg_dxf.h in Headers */, 715 | B7778B3B1CB97E3E0037A830 /* gaiamatrix.h in Headers */, 716 | B7778B451CB97E3E0037A830 /* gg_wfs.h in Headers */, 717 | B7778B3D1CB97E3E0037A830 /* gg_advanced.h in Headers */, 718 | B7778B461CB97E3E0037A830 /* gg_xml.h in Headers */, 719 | B7778B381CB97E3E0037A830 /* gaiaaux.h in Headers */, 720 | B73D8B2A1C98B5C500F327B7 /* dxf_private.h in Headers */, 721 | B73D8B151C98B5C500F327B7 /* cache_aux_1.h in Headers */, 722 | B7778B441CB97E3E0037A830 /* gg_structs.h in Headers */, 723 | B7778B3C1CB97E3E0037A830 /* geopackage.h in Headers */, 724 | B7778B371CB97E3E0037A830 /* debug.h in Headers */, 725 | B73D8B171C98B5C500F327B7 /* cache_aux_3.h in Headers */, 726 | B7778B421CB97E3E0037A830 /* gg_formats.h in Headers */, 727 | B7778B3A1CB97E3E0037A830 /* gaiageo.h in Headers */, 728 | B73D8B161C98B5C500F327B7 /* cache_aux_2.h in Headers */, 729 | B7778B361CB97E3E0037A830 /* control_points.h in Headers */, 730 | B7778B4A1CB97E3E0037A830 /* spatialite_private.h in Headers */, 731 | ); 732 | runOnlyForDeploymentPostprocessing = 0; 733 | }; 734 | /* End PBXHeadersBuildPhase section */ 735 | 736 | /* Begin PBXNativeTarget section */ 737 | B7F969B51C97493F00C78357 /* spatialite */ = { 738 | isa = PBXNativeTarget; 739 | buildConfigurationList = B7F969BE1C97493F00C78357 /* Build configuration list for PBXNativeTarget "spatialite" */; 740 | buildPhases = ( 741 | B7EC17501C9DB78400E02AA3 /* Remove makefiles */, 742 | B732738D1C9DDC8800AB3FE9 /* Fix localcharset.h */, 743 | B732738B1C9DD71700AB3FE9 /* Fix proj_api.h references */, 744 | B732738C1C9DD81200AB3FE9 /* Fix geos_c.h references */, 745 | B7778B4D1CB9B8240037A830 /* Patch gg_dxf.h */, 746 | B7778B4E1CB9B83A0037A830 /* Patch gg_formats.h */, 747 | B7778B4F1CB9B84E0037A830 /* Patch gg_structs.h */, 748 | B7778B511CB9B8930037A830 /* Patch sqlite.h */, 749 | B7778B501CB9B8710037A830 /* Fix sqlite references */, 750 | B732737D1C9DC07F00AB3FE9 /* Copy config.h */, 751 | B7F969B11C97493F00C78357 /* Sources */, 752 | B7F969B21C97493F00C78357 /* Frameworks */, 753 | B7F969B31C97493F00C78357 /* Headers */, 754 | ); 755 | buildRules = ( 756 | ); 757 | dependencies = ( 758 | ); 759 | name = spatialite; 760 | productName = spatialite; 761 | productReference = B7F969B61C97493F00C78357 /* spatialite.framework */; 762 | productType = "com.apple.product-type.framework"; 763 | }; 764 | /* End PBXNativeTarget section */ 765 | 766 | /* Begin PBXProject section */ 767 | B7F969AD1C97493F00C78357 /* Project object */ = { 768 | isa = PBXProject; 769 | attributes = { 770 | LastUpgradeCheck = 0720; 771 | ORGANIZATIONNAME = "gaia-gis"; 772 | TargetAttributes = { 773 | B7F969B51C97493F00C78357 = { 774 | CreatedOnToolsVersion = 7.2.1; 775 | }; 776 | }; 777 | }; 778 | buildConfigurationList = B7F969B01C97493F00C78357 /* Build configuration list for PBXProject "spatialite" */; 779 | compatibilityVersion = "Xcode 3.2"; 780 | developmentRegion = English; 781 | hasScannedForEncodings = 0; 782 | knownRegions = ( 783 | en, 784 | ); 785 | mainGroup = B7F969AC1C97493F00C78357; 786 | productRefGroup = B7F969B71C97493F00C78357 /* Products */; 787 | projectDirPath = ""; 788 | projectRoot = ""; 789 | targets = ( 790 | B7F969B51C97493F00C78357 /* spatialite */, 791 | ); 792 | }; 793 | /* End PBXProject section */ 794 | 795 | /* Begin PBXShellScriptBuildPhase section */ 796 | B732737D1C9DC07F00AB3FE9 /* Copy config.h */ = { 797 | isa = PBXShellScriptBuildPhase; 798 | buildActionMask = 2147483647; 799 | files = ( 800 | ); 801 | inputPaths = ( 802 | ); 803 | name = "Copy config.h"; 804 | outputPaths = ( 805 | ); 806 | runOnlyForDeploymentPostprocessing = 0; 807 | shellPath = /bin/sh; 808 | shellScript = "CONFIGFILE=${SRCROOT}/spatialite/config.h\n\ncp ${SRCROOT}/spatialite/config.h.in $CONFIGFILE\n\nsed -i '' -e 's/#undef OMIT_FREEXL/#define OMIT_FREEXL/g' $CONFIGFILE\n\nsed -i '' -e 's/#undef TARGET_CPU//g' $CONFIGFILE\n\nsed -i '' -e 's/#undef VERSION//g' $CONFIGFILE\n\nexit 0\n"; 809 | }; 810 | B732738B1C9DD71700AB3FE9 /* Fix proj_api.h references */ = { 811 | isa = PBXShellScriptBuildPhase; 812 | buildActionMask = 2147483647; 813 | files = ( 814 | ); 815 | inputPaths = ( 816 | ); 817 | name = "Fix proj_api.h references"; 818 | outputPaths = ( 819 | ); 820 | runOnlyForDeploymentPostprocessing = 0; 821 | shellPath = /bin/sh; 822 | shellScript = "\nfind ${SRCROOT}/spatialite/src -name '*.c' -exec sed -i '' -e 's/#include /#include /g' {} \\;\n\nexit 0\n\n"; 823 | }; 824 | B732738C1C9DD81200AB3FE9 /* Fix geos_c.h references */ = { 825 | isa = PBXShellScriptBuildPhase; 826 | buildActionMask = 2147483647; 827 | files = ( 828 | ); 829 | inputPaths = ( 830 | ); 831 | name = "Fix geos_c.h references"; 832 | outputPaths = ( 833 | ); 834 | runOnlyForDeploymentPostprocessing = 0; 835 | shellPath = /bin/sh; 836 | shellScript = "\nfind ${SRCROOT}/spatialite/src -name '*.c' -exec sed -i '' -e 's/#include /#include /g' {} \\;\n\nexit 0"; 837 | }; 838 | B732738D1C9DDC8800AB3FE9 /* Fix localcharset.h */ = { 839 | isa = PBXShellScriptBuildPhase; 840 | buildActionMask = 2147483647; 841 | files = ( 842 | ); 843 | inputPaths = ( 844 | ); 845 | name = "Fix localcharset.h"; 846 | outputPaths = ( 847 | ); 848 | runOnlyForDeploymentPostprocessing = 0; 849 | shellPath = /bin/sh; 850 | shellScript = "\nfind ${SRCROOT}/spatialite/src -name '*.c' -exec sed -i '' -e 's/#include /#include <\\/usr\\/include\\/localcharset.h>/g' {} \\;\n\nexit 0"; 851 | }; 852 | B7778B4D1CB9B8240037A830 /* Patch gg_dxf.h */ = { 853 | isa = PBXShellScriptBuildPhase; 854 | buildActionMask = 2147483647; 855 | files = ( 856 | ); 857 | inputPaths = ( 858 | ); 859 | name = "Patch gg_dxf.h"; 860 | outputPaths = ( 861 | ); 862 | runOnlyForDeploymentPostprocessing = 0; 863 | shellPath = /bin/sh; 864 | shellScript = "echo 'Patching gg_dxf.h'\npatch -N ${SRCROOT}/spatialite/src/Headers/spatialite/gg_dxf.h ${SRCROOT}/patches/gg_dxf.h.patch\nexit 0"; 865 | }; 866 | B7778B4E1CB9B83A0037A830 /* Patch gg_formats.h */ = { 867 | isa = PBXShellScriptBuildPhase; 868 | buildActionMask = 2147483647; 869 | files = ( 870 | ); 871 | inputPaths = ( 872 | ); 873 | name = "Patch gg_formats.h"; 874 | outputPaths = ( 875 | ); 876 | runOnlyForDeploymentPostprocessing = 0; 877 | shellPath = /bin/sh; 878 | shellScript = "echo 'Patching gg_formats.h'\npatch -N ${SRCROOT}/spatialite/src/Headers/spatialite/gg_formats.h ${SRCROOT}/patches/gg_formats.h.patch\nexit 0"; 879 | }; 880 | B7778B4F1CB9B84E0037A830 /* Patch gg_structs.h */ = { 881 | isa = PBXShellScriptBuildPhase; 882 | buildActionMask = 2147483647; 883 | files = ( 884 | ); 885 | inputPaths = ( 886 | ); 887 | name = "Patch gg_structs.h"; 888 | outputPaths = ( 889 | ); 890 | runOnlyForDeploymentPostprocessing = 0; 891 | shellPath = /bin/sh; 892 | shellScript = "echo 'Patching gg_structs.h'\npatch -N ${SRCROOT}/spatialite/src/Headers/spatialite/gg_structs.h ${SRCROOT}/patches/gg_structs.h.patch\nexit 0"; 893 | }; 894 | B7778B501CB9B8710037A830 /* Fix sqlite references */ = { 895 | isa = PBXShellScriptBuildPhase; 896 | buildActionMask = 2147483647; 897 | files = ( 898 | ); 899 | inputPaths = ( 900 | ); 901 | name = "Fix sqlite references"; 902 | outputPaths = ( 903 | ); 904 | runOnlyForDeploymentPostprocessing = 0; 905 | shellPath = /bin/sh; 906 | shellScript = "\nfind ${SRCROOT}/spatialite/src -name '*.[c|h]' -exec sed -i '' -e 's/#include /#include /g' {} \\;\n\nexit 0"; 907 | }; 908 | B7778B511CB9B8930037A830 /* Patch sqlite.h */ = { 909 | isa = PBXShellScriptBuildPhase; 910 | buildActionMask = 2147483647; 911 | files = ( 912 | ); 913 | inputPaths = ( 914 | ); 915 | name = "Patch sqlite.h"; 916 | outputPaths = ( 917 | ); 918 | runOnlyForDeploymentPostprocessing = 0; 919 | shellPath = /bin/sh; 920 | shellScript = "echo 'Patching sqlite.h'\npatch -N ${SRCROOT}/spatialite/src/Headers/spatialite/sqlite.h ${SRCROOT}/patches/sqlite.h.patch\nexit 0"; 921 | }; 922 | B7EC17501C9DB78400E02AA3 /* Remove makefiles */ = { 923 | isa = PBXShellScriptBuildPhase; 924 | buildActionMask = 2147483647; 925 | files = ( 926 | ); 927 | inputPaths = ( 928 | ); 929 | name = "Remove makefiles"; 930 | outputPaths = ( 931 | ); 932 | runOnlyForDeploymentPostprocessing = 0; 933 | shellPath = /bin/sh; 934 | shellScript = "find ${SRCROOT} -name \"Makefile\" -exec rm {} \\;\nfind ${SRCROOT} -name \"Makefile.am\" -exec rm {} \\;\nfind ${SRCROOT} -name \"Makefile.in\" -exec rm {} \\;\nfind ${SRCROOT} -name \"Makefile.vc\" -exec rm {} \\;\n"; 935 | }; 936 | /* End PBXShellScriptBuildPhase section */ 937 | 938 | /* Begin PBXSourcesBuildPhase section */ 939 | B7F969B11C97493F00C78357 /* Sources */ = { 940 | isa = PBXSourcesBuildPhase; 941 | buildActionMask = 2147483647; 942 | files = ( 943 | B73D8BDD1C98B5C500F327B7 /* epsg_inlined_38.c in Sources */, 944 | B73D8BB71C98B5C500F327B7 /* epsg_inlined_00.c in Sources */, 945 | B73D8BE61C98B5C500F327B7 /* epsg_inlined_extra.c in Sources */, 946 | B73D8BB31C98B5C500F327B7 /* virtualshape.c in Sources */, 947 | B73D8BA11C98B5C500F327B7 /* validator.c in Sources */, 948 | B73D8BBB1C98B5C500F327B7 /* epsg_inlined_04.c in Sources */, 949 | B73D8B7D1C98B5C500F327B7 /* gpkgMakePoint.c in Sources */, 950 | B73D8BB51C98B5C500F327B7 /* virtualXL.c in Sources */, 951 | B73D8B991C98B5C500F327B7 /* gaia_md5.c in Sources */, 952 | B73D8B4E1C98B5C500F327B7 /* gg_relations_ext.c in Sources */, 953 | B73D8B751C98B5C500F327B7 /* gpkg_get_normal_zoom.c in Sources */, 954 | B73D8BB91C98B5C500F327B7 /* epsg_inlined_02.c in Sources */, 955 | B73D8BB11C98B5C500F327B7 /* virtualgpkg.c in Sources */, 956 | B73D8B771C98B5C500F327B7 /* gpkgBinary.c in Sources */, 957 | B73D8BCC1C98B5C500F327B7 /* epsg_inlined_21.c in Sources */, 958 | B73D8BBE1C98B5C500F327B7 /* epsg_inlined_07.c in Sources */, 959 | B73D8B4A1C98B5C500F327B7 /* gg_kml.c in Sources */, 960 | B73D8BAB1C98B5C500F327B7 /* statistics.c in Sources */, 961 | B73D8B511C98B5C500F327B7 /* gg_vanuatu.c in Sources */, 962 | B73D8B421C98B5C500F327B7 /* gg_endian.c in Sources */, 963 | B73D8BE11C98B5C500F327B7 /* epsg_inlined_42.c in Sources */, 964 | B73D8BCB1C98B5C500F327B7 /* epsg_inlined_20.c in Sources */, 965 | B73D8BD61C98B5C500F327B7 /* epsg_inlined_31.c in Sources */, 966 | B73D8BAA1C98B5C500F327B7 /* srid_aux.c in Sources */, 967 | B73D8B271C98B5C500F327B7 /* dxf_load_mixed.c in Sources */, 968 | B73D8BE41C98B5C500F327B7 /* epsg_inlined_45.c in Sources */, 969 | B73D8BB81C98B5C500F327B7 /* epsg_inlined_01.c in Sources */, 970 | B73D8BB21C98B5C500F327B7 /* virtualnetwork.c in Sources */, 971 | B73D8B291C98B5C500F327B7 /* dxf_parser.c in Sources */, 972 | B73D8B741C98B5C500F327B7 /* gpkg_get_normal_row.c in Sources */, 973 | B73D8BC81C98B5C500F327B7 /* epsg_inlined_17.c in Sources */, 974 | B73D8B211C98B5C500F327B7 /* grass_crs3d.c in Sources */, 975 | B73D8B481C98B5C500F327B7 /* gg_geoscvt.c in Sources */, 976 | B73D8BE81C98B5C500F327B7 /* epsg_inlined_wgs84_00.c in Sources */, 977 | B73D8B501C98B5C500F327B7 /* gg_transform.c in Sources */, 978 | B73D8BFA1C98B5C500F327B7 /* wfs_in.c in Sources */, 979 | B73D8BE71C98B5C500F327B7 /* epsg_inlined_prussian.c in Sources */, 980 | B73D8B9C1C98B5C500F327B7 /* md5.c in Sources */, 981 | B73D8BDF1C98B5C500F327B7 /* epsg_inlined_40.c in Sources */, 982 | B73D8BBC1C98B5C500F327B7 /* epsg_inlined_05.c in Sources */, 983 | B73D8B221C98B5C500F327B7 /* grass_georef.c in Sources */, 984 | B73D8BAC1C98B5C500F327B7 /* table_cloner.c in Sources */, 985 | B73D8B4D1C98B5C500F327B7 /* gg_relations.c in Sources */, 986 | B73D8B761C98B5C500F327B7 /* gpkgAddGeometryColumn.c in Sources */, 987 | B73D8B441C98B5C500F327B7 /* gg_extras.c in Sources */, 988 | B73D8BC11C98B5C500F327B7 /* epsg_inlined_10.c in Sources */, 989 | B73D8BD71C98B5C500F327B7 /* epsg_inlined_32.c in Sources */, 990 | B73D8BC71C98B5C500F327B7 /* epsg_inlined_16.c in Sources */, 991 | B73D8BCE1C98B5C500F327B7 /* epsg_inlined_23.c in Sources */, 992 | B73D8BBF1C98B5C500F327B7 /* epsg_inlined_08.c in Sources */, 993 | B73D8BD01C98B5C500F327B7 /* epsg_inlined_25.c in Sources */, 994 | B73D8BD91C98B5C500F327B7 /* epsg_inlined_34.c in Sources */, 995 | B73D8B451C98B5C500F327B7 /* gg_geodesic.c in Sources */, 996 | B73D8B261C98B5C500F327B7 /* dxf_load_distinct.c in Sources */, 997 | B73D8BC41C98B5C500F327B7 /* epsg_inlined_13.c in Sources */, 998 | B73D8B431C98B5C500F327B7 /* gg_ewkt.c in Sources */, 999 | B73D8BCD1C98B5C500F327B7 /* epsg_inlined_22.c in Sources */, 1000 | B73D8BA21C98B5C500F327B7 /* extra_tables.c in Sources */, 1001 | B73D8BC61C98B5C500F327B7 /* epsg_inlined_15.c in Sources */, 1002 | B73D8B521C98B5C500F327B7 /* gg_voronoj.c in Sources */, 1003 | B73D8BC21C98B5C500F327B7 /* epsg_inlined_11.c in Sources */, 1004 | B73D8BF41C98B5C500F327B7 /* version.c in Sources */, 1005 | B73D8BCF1C98B5C500F327B7 /* epsg_inlined_24.c in Sources */, 1006 | B73D8B141C98B5C500F327B7 /* alloc_cache.c in Sources */, 1007 | B73D8BCA1C98B5C500F327B7 /* epsg_inlined_19.c in Sources */, 1008 | B73D8BA91C98B5C500F327B7 /* spatialite_init.c in Sources */, 1009 | B73D8BE01C98B5C500F327B7 /* epsg_inlined_41.c in Sources */, 1010 | B73D8B2F1C98B5C500F327B7 /* gg_utf8.c in Sources */, 1011 | B73D8B2E1C98B5C500F327B7 /* gg_sqlaux.c in Sources */, 1012 | B73D8BB41C98B5C500F327B7 /* virtualspatialindex.c in Sources */, 1013 | B73D8B4F1C98B5C500F327B7 /* gg_shape.c in Sources */, 1014 | B73D8B711C98B5C500F327B7 /* gpkg_add_geometry_triggers.c in Sources */, 1015 | B73D8B491C98B5C500F327B7 /* gg_gml.c in Sources */, 1016 | B73D8B721C98B5C500F327B7 /* gpkg_add_spatial_index.c in Sources */, 1017 | B73D8BDC1C98B5C500F327B7 /* epsg_inlined_37.c in Sources */, 1018 | B73D8BD31C98B5C500F327B7 /* epsg_inlined_28.c in Sources */, 1019 | B73D8B531C98B5C500F327B7 /* gg_wkb.c in Sources */, 1020 | B73D8BDA1C98B5C500F327B7 /* epsg_inlined_35.c in Sources */, 1021 | B73D8BE91C98B5C500F327B7 /* epsg_inlined_wgs84_01.c in Sources */, 1022 | B73D8BA71C98B5C500F327B7 /* se_helpers.c in Sources */, 1023 | B73D8B4B1C98B5C500F327B7 /* gg_lwgeom.c in Sources */, 1024 | B73D8BC91C98B5C500F327B7 /* epsg_inlined_18.c in Sources */, 1025 | B73D8B541C98B5C500F327B7 /* gg_wkt.c in Sources */, 1026 | B73D8BAF1C98B5C500F327B7 /* virtualelementary.c in Sources */, 1027 | B73D8BDE1C98B5C500F327B7 /* epsg_inlined_39.c in Sources */, 1028 | B73D8BD21C98B5C500F327B7 /* epsg_inlined_27.c in Sources */, 1029 | B73D8BF31C98B5C500F327B7 /* srs_init.c in Sources */, 1030 | B73D8B321C98B5C500F327B7 /* gaia_exif.c in Sources */, 1031 | B73D8BDB1C98B5C500F327B7 /* epsg_inlined_36.c in Sources */, 1032 | B73D8B411C98B5C500F327B7 /* gg_advanced.c in Sources */, 1033 | B73D8BE21C98B5C500F327B7 /* epsg_inlined_43.c in Sources */, 1034 | B73D8BF71C98B5C500F327B7 /* virtualtext.c in Sources */, 1035 | B73D8BD81C98B5C500F327B7 /* epsg_inlined_33.c in Sources */, 1036 | B73D8B461C98B5C500F327B7 /* gg_geoJSON.c in Sources */, 1037 | B73D8B471C98B5C500F327B7 /* gg_geometries.c in Sources */, 1038 | B73D8B791C98B5C500F327B7 /* gpkgCreateTilesTable.c in Sources */, 1039 | B73D8BD41C98B5C500F327B7 /* epsg_inlined_29.c in Sources */, 1040 | B73D8B231C98B5C500F327B7 /* grass_georef_tps.c in Sources */, 1041 | B73D8BAE1C98B5C500F327B7 /* virtualdbf.c in Sources */, 1042 | B73D8BA51C98B5C500F327B7 /* mbrcache.c in Sources */, 1043 | B73D8BA61C98B5C500F327B7 /* metatables.c in Sources */, 1044 | B73D8BA81C98B5C500F327B7 /* spatialite.c in Sources */, 1045 | B73D8BC51C98B5C500F327B7 /* epsg_inlined_14.c in Sources */, 1046 | B73D8BB61C98B5C500F327B7 /* virtualxpath.c in Sources */, 1047 | B73D8BBA1C98B5C500F327B7 /* epsg_inlined_03.c in Sources */, 1048 | B73D8BE51C98B5C500F327B7 /* epsg_inlined_46.c in Sources */, 1049 | B73D8BB01C98B5C500F327B7 /* virtualfdo.c in Sources */, 1050 | B73D8BC31C98B5C500F327B7 /* epsg_inlined_12.c in Sources */, 1051 | B73D8BA01C98B5C500F327B7 /* shapefiles.c in Sources */, 1052 | B73D8B281C98B5C500F327B7 /* dxf_loader.c in Sources */, 1053 | B73D8B2B1C98B5C500F327B7 /* dxf_writer.c in Sources */, 1054 | B73D8BAD1C98B5C500F327B7 /* virtualbbox.c in Sources */, 1055 | B73D8B731C98B5C500F327B7 /* gpkg_add_tile_triggers.c in Sources */, 1056 | B73D8B7A1C98B5C500F327B7 /* gpkgCreateTilesZoomLevel.c in Sources */, 1057 | B73D8BD11C98B5C500F327B7 /* epsg_inlined_26.c in Sources */, 1058 | B73D8BC01C98B5C500F327B7 /* epsg_inlined_09.c in Sources */, 1059 | B73D8BBD1C98B5C500F327B7 /* epsg_inlined_06.c in Sources */, 1060 | B73D8BD51C98B5C500F327B7 /* epsg_inlined_30.c in Sources */, 1061 | B73D8B551C98B5C500F327B7 /* gg_xml.c in Sources */, 1062 | B73D8B7C1C98B5C500F327B7 /* gpkgInsertEpsgSRID.c in Sources */, 1063 | B73D8B781C98B5C500F327B7 /* gpkgCreateBaseTables.c in Sources */, 1064 | B73D8BE31C98B5C500F327B7 /* epsg_inlined_44.c in Sources */, 1065 | B73D8B1F1C98B5C500F327B7 /* gaia_control_points.c in Sources */, 1066 | B73D8B7B1C98B5C500F327B7 /* gpkgGetImageType.c in Sources */, 1067 | B73D8B6F1C98B5C500F327B7 /* gaia_cvt_gpkg.c in Sources */, 1068 | B73D8B4C1C98B5C500F327B7 /* gg_matrix.c in Sources */, 1069 | ); 1070 | runOnlyForDeploymentPostprocessing = 0; 1071 | }; 1072 | /* End PBXSourcesBuildPhase section */ 1073 | 1074 | /* Begin XCBuildConfiguration section */ 1075 | B7F969BC1C97493F00C78357 /* Debug */ = { 1076 | isa = XCBuildConfiguration; 1077 | buildSettings = { 1078 | ALWAYS_SEARCH_USER_PATHS = NO; 1079 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1080 | CLANG_CXX_LIBRARY = "libc++"; 1081 | CLANG_ENABLE_MODULES = YES; 1082 | CLANG_ENABLE_OBJC_ARC = YES; 1083 | CLANG_WARN_BOOL_CONVERSION = YES; 1084 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1085 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1086 | CLANG_WARN_EMPTY_BODY = YES; 1087 | CLANG_WARN_ENUM_CONVERSION = YES; 1088 | CLANG_WARN_INT_CONVERSION = YES; 1089 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1090 | CLANG_WARN_UNREACHABLE_CODE = YES; 1091 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1092 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1093 | COPY_PHASE_STRIP = NO; 1094 | CURRENT_PROJECT_VERSION = 1; 1095 | DEBUG_INFORMATION_FORMAT = dwarf; 1096 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1097 | ENABLE_TESTABILITY = YES; 1098 | GCC_C_LANGUAGE_STANDARD = gnu99; 1099 | GCC_DYNAMIC_NO_PIC = NO; 1100 | GCC_NO_COMMON_BLOCKS = YES; 1101 | GCC_OPTIMIZATION_LEVEL = 0; 1102 | GCC_PREPROCESSOR_DEFINITIONS = ( 1103 | "DEBUG=1", 1104 | "$(inherited)", 1105 | ); 1106 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1107 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1108 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1109 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1110 | GCC_WARN_UNUSED_FUNCTION = YES; 1111 | GCC_WARN_UNUSED_VARIABLE = YES; 1112 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1113 | MTL_ENABLE_DEBUG_INFO = YES; 1114 | ONLY_ACTIVE_ARCH = YES; 1115 | SDKROOT = iphoneos; 1116 | TARGETED_DEVICE_FAMILY = "1,2"; 1117 | VERSIONING_SYSTEM = "apple-generic"; 1118 | VERSION_INFO_PREFIX = ""; 1119 | }; 1120 | name = Debug; 1121 | }; 1122 | B7F969BD1C97493F00C78357 /* Release */ = { 1123 | isa = XCBuildConfiguration; 1124 | buildSettings = { 1125 | ALWAYS_SEARCH_USER_PATHS = NO; 1126 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1127 | CLANG_CXX_LIBRARY = "libc++"; 1128 | CLANG_ENABLE_MODULES = YES; 1129 | CLANG_ENABLE_OBJC_ARC = YES; 1130 | CLANG_WARN_BOOL_CONVERSION = YES; 1131 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1132 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1133 | CLANG_WARN_EMPTY_BODY = YES; 1134 | CLANG_WARN_ENUM_CONVERSION = YES; 1135 | CLANG_WARN_INT_CONVERSION = YES; 1136 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1137 | CLANG_WARN_UNREACHABLE_CODE = YES; 1138 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1139 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1140 | COPY_PHASE_STRIP = NO; 1141 | CURRENT_PROJECT_VERSION = 1; 1142 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1143 | ENABLE_NS_ASSERTIONS = NO; 1144 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1145 | GCC_C_LANGUAGE_STANDARD = gnu99; 1146 | GCC_NO_COMMON_BLOCKS = YES; 1147 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1148 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1149 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1150 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1151 | GCC_WARN_UNUSED_FUNCTION = YES; 1152 | GCC_WARN_UNUSED_VARIABLE = YES; 1153 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1154 | MTL_ENABLE_DEBUG_INFO = NO; 1155 | SDKROOT = iphoneos; 1156 | TARGETED_DEVICE_FAMILY = "1,2"; 1157 | VALIDATE_PRODUCT = YES; 1158 | VERSIONING_SYSTEM = "apple-generic"; 1159 | VERSION_INFO_PREFIX = ""; 1160 | }; 1161 | name = Release; 1162 | }; 1163 | B7F969BF1C97493F00C78357 /* Debug */ = { 1164 | isa = XCBuildConfiguration; 1165 | buildSettings = { 1166 | ALWAYS_SEARCH_USER_PATHS = YES; 1167 | CODE_SIGN_IDENTITY = ""; 1168 | DEFINES_MODULE = YES; 1169 | DYLIB_COMPATIBILITY_VERSION = 1; 1170 | DYLIB_CURRENT_VERSION = 1; 1171 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1172 | ENABLE_BITCODE = NO; 1173 | FRAMEWORK_SEARCH_PATHS = ( 1174 | "$(inherited)", 1175 | "$(PROJECT_DIR)/Carthage/Build/iOS", 1176 | ); 1177 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 1178 | GCC_PREFIX_HEADER = "${SRCROOT}/resources/prefix.pch"; 1179 | GCC_PREPROCESSOR_DEFINITIONS = ""; 1180 | GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = ""; 1181 | GCC_WARN_64_TO_32_BIT_CONVERSION = NO; 1182 | HEADER_SEARCH_PATHS = ( 1183 | "${SRCROOT}/spatialite/src/headers", 1184 | "${SRCROOT}/spatialite/", 1185 | /usr/include/localcharset.h, 1186 | ); 1187 | INFOPLIST_FILE = "$(SRCROOT)/resources/Info.plist"; 1188 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1189 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1190 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1191 | MODULEMAP_FILE = "${SRCROOT}/resources/module.modulemap"; 1192 | OTHER_LDFLAGS = ""; 1193 | PRODUCT_BUNDLE_IDENTIFIER = "gaia-gis.spatialite"; 1194 | PRODUCT_NAME = "$(TARGET_NAME)"; 1195 | PROVISIONING_PROFILE = ""; 1196 | SKIP_INSTALL = YES; 1197 | USER_HEADER_SEARCH_PATHS = ""; 1198 | }; 1199 | name = Debug; 1200 | }; 1201 | B7F969C01C97493F00C78357 /* Release */ = { 1202 | isa = XCBuildConfiguration; 1203 | buildSettings = { 1204 | ALWAYS_SEARCH_USER_PATHS = YES; 1205 | CODE_SIGN_IDENTITY = ""; 1206 | DEFINES_MODULE = YES; 1207 | DYLIB_COMPATIBILITY_VERSION = 1; 1208 | DYLIB_CURRENT_VERSION = 1; 1209 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1210 | ENABLE_BITCODE = NO; 1211 | FRAMEWORK_SEARCH_PATHS = ( 1212 | "$(inherited)", 1213 | "$(PROJECT_DIR)/Carthage/Build/iOS", 1214 | ); 1215 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 1216 | GCC_PREFIX_HEADER = "${SRCROOT}/resources/prefix.pch"; 1217 | GCC_PREPROCESSOR_DEFINITIONS = ""; 1218 | GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = ""; 1219 | GCC_WARN_64_TO_32_BIT_CONVERSION = NO; 1220 | HEADER_SEARCH_PATHS = ( 1221 | "${SRCROOT}/spatialite/src/headers", 1222 | "${SRCROOT}/spatialite/", 1223 | /usr/include/localcharset.h, 1224 | ); 1225 | INFOPLIST_FILE = "$(SRCROOT)/resources/Info.plist"; 1226 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1227 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1228 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1229 | MODULEMAP_FILE = "${SRCROOT}/resources/module.modulemap"; 1230 | OTHER_LDFLAGS = ""; 1231 | PRODUCT_BUNDLE_IDENTIFIER = "gaia-gis.spatialite"; 1232 | PRODUCT_NAME = "$(TARGET_NAME)"; 1233 | PROVISIONING_PROFILE = ""; 1234 | SKIP_INSTALL = YES; 1235 | USER_HEADER_SEARCH_PATHS = ""; 1236 | }; 1237 | name = Release; 1238 | }; 1239 | /* End XCBuildConfiguration section */ 1240 | 1241 | /* Begin XCConfigurationList section */ 1242 | B7F969B01C97493F00C78357 /* Build configuration list for PBXProject "spatialite" */ = { 1243 | isa = XCConfigurationList; 1244 | buildConfigurations = ( 1245 | B7F969BC1C97493F00C78357 /* Debug */, 1246 | B7F969BD1C97493F00C78357 /* Release */, 1247 | ); 1248 | defaultConfigurationIsVisible = 0; 1249 | defaultConfigurationName = Release; 1250 | }; 1251 | B7F969BE1C97493F00C78357 /* Build configuration list for PBXNativeTarget "spatialite" */ = { 1252 | isa = XCConfigurationList; 1253 | buildConfigurations = ( 1254 | B7F969BF1C97493F00C78357 /* Debug */, 1255 | B7F969C01C97493F00C78357 /* Release */, 1256 | ); 1257 | defaultConfigurationIsVisible = 0; 1258 | defaultConfigurationName = Release; 1259 | }; 1260 | /* End XCConfigurationList section */ 1261 | }; 1262 | rootObject = B7F969AD1C97493F00C78357 /* Project object */; 1263 | } 1264 | -------------------------------------------------------------------------------- /spatialite.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /spatialite.xcodeproj/project.xcworkspace/xcshareddata/spatialite.xcscmblueprint: -------------------------------------------------------------------------------- 1 | { 2 | "DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "3D47B5B3F75CCFC47C8D69E7A6E31D15C2F59951", 3 | "DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : { 4 | 5 | }, 6 | "DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : { 7 | "3D47B5B3F75CCFC47C8D69E7A6E31D15C2F59951" : 0, 8 | "E88F5B8696FFC6936D951F0205D3401B401C2453" : 0 9 | }, 10 | "DVTSourceControlWorkspaceBlueprintIdentifierKey" : "1DA0788E-AD3F-4C80-8132-6EE04FC25BF8", 11 | "DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : { 12 | "3D47B5B3F75CCFC47C8D69E7A6E31D15C2F59951" : "spatialite-iOS\/", 13 | "E88F5B8696FFC6936D951F0205D3401B401C2453" : "spatialite-iOS\/spatialite\/" 14 | }, 15 | "DVTSourceControlWorkspaceBlueprintNameKey" : "spatialite", 16 | "DVTSourceControlWorkspaceBlueprintVersion" : 204, 17 | "DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "spatialite.xcodeproj", 18 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [ 19 | { 20 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/Ryandev\/spatialite-iOS.git", 21 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", 22 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "3D47B5B3F75CCFC47C8D69E7A6E31D15C2F59951" 23 | }, 24 | { 25 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/Ryandev\/SpatiaLite.git", 26 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", 27 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "E88F5B8696FFC6936D951F0205D3401B401C2453" 28 | } 29 | ] 30 | } -------------------------------------------------------------------------------- /spatialite.xcodeproj/project.xcworkspace/xcuserdata/ryanpowell.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryandev/spatialite-iOS/5745024795a6c52830910280e0c7c2cde86582bb/spatialite.xcodeproj/project.xcworkspace/xcuserdata/ryanpowell.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /spatialite.xcodeproj/xcshareddata/xcschemes/spatialite.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 34 | 35 | 45 | 46 | 52 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 70 | 71 | 72 | 73 | 75 | 76 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /spatialite.xcodeproj/xcuserdata/ryanpowell.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | spatialite.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | B7F969B51C97493F00C78357 16 | 17 | primary 18 | 19 | 20 | 21 | 22 | 23 | --------------------------------------------------------------------------------