Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 38 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,39 @@
build
# Mac OS X
.DS_Store

# Xcode

## Build generated
build/
DerivedData

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata

## Other
*.xccheckout
*.moved-aside
*.xcuserstate
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
.build/

# Carthage
Carthage/Build
8 changes: 4 additions & 4 deletions geos.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1450,7 +1450,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "#copy platform.h\nPLATFORMFILE=${SRCROOT}/geos/include/geos/platform.h\n\ncp ${SRCROOT}/geos/include/geos/platform.h.cmake $PLATFORMFILE\n\n\nsed -i '' -e 's/cmakedefine/define/g' $PLATFORMFILE\nsed -i '' -e 's/#define HAVE_IEEEFP_H 1/#undef HAVE_IEEEFP_H/g' $PLATFORMFILE\n\n\nexit 0";
shellScript = "#copy platform.h\nPLATFORMFILE=\"${SRCROOT}/geos/include/geos/platform.h\"\n\ncp \"${SRCROOT}/geos/include/geos/platform.h.cmake\" \"$PLATFORMFILE\"\n\n\nsed -i '' -e 's/cmakedefine/define/g' \"$PLATFORMFILE\"\nsed -i '' -e 's/#define HAVE_IEEEFP_H 1/#undef HAVE_IEEEFP_H/g' \"$PLATFORMFILE\"\n\n\nexit 0";
};
B790C69F1CB00EBB00350F23 /* Patch geos.h */ = {
isa = PBXShellScriptBuildPhase;
Expand All @@ -1464,7 +1464,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "patch ${SRCROOT}/geos/include/geos.h ${SRCROOT}/geos.h.patch\nexit 0";
shellScript = "patch \"${SRCROOT}/geos/include/geos.h\" \"${SRCROOT}/geos.h.patch\"\nexit 0";
};
B7F969A11C96139500C78357 /* Make geos_svn_revision.h */ = {
isa = PBXShellScriptBuildPhase;
Expand Down Expand Up @@ -1492,7 +1492,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "MAJOR=3\nMINOR=5\nPATCH=0\nNAME=3.5.0\n\nGEOS_H=${SRCROOT}/geos/include/geos/version.h\necho $GEOS_H\n\ncp ${SRCROOT}/geos/include/geos/version.h.in $GEOS_H\n\necho $MAJOR\n\nsed \"s/@VERSION_MAJOR@/$MAJOR/g\" $GEOS_H > /tmp/geos.h && mv /tmp/geos.h $GEOS_H\n\nsed \"s/@VERSION_MINOR@/$MINOR/g\" $GEOS_H > /tmp/geos.h && mv /tmp/geos.h $GEOS_H\n\nsed \"s/@VERSION_PATCH@/$PATCH/g\" $GEOS_H > /tmp/geos.h && mv /tmp/geos.h $GEOS_H\n\nsed \"s/@VERSION@/$NAME/g\" $GEOS_H > /tmp/geos.h && mv /tmp/geos.h $GEOS_H\n\nsed \"s/@JTS_PORT@/$NAME/g\" $GEOS_H > /tmp/geos.h && mv /tmp/geos.h $GEOS_H\n";
shellScript = "MAJOR=3\nMINOR=5\nPATCH=0\nNAME=3.5.0\n\nGEOS_H=\"${SRCROOT}/geos/include/geos/version.h\"\necho $GEOS_H\n\ncp \"${SRCROOT}/geos/include/geos/version.h.in\" \"$GEOS_H\"\n\necho $MAJOR\n\nsed \"s/@VERSION_MAJOR@/$MAJOR/g\" \"$GEOS_H\" > /tmp/geos.h && mv /tmp/geos.h \"$GEOS_H\"\n\nsed \"s/@VERSION_MINOR@/$MINOR/g\" \"$GEOS_H\" > /tmp/geos.h && mv /tmp/geos.h \"$GEOS_H\"\n\nsed \"s/@VERSION_PATCH@/$PATCH/g\" \"$GEOS_H\" > /tmp/geos.h && mv /tmp/geos.h \"$GEOS_H\"\n\nsed \"s/@VERSION@/$NAME/g\" \"$GEOS_H\" > /tmp/geos.h && mv /tmp/geos.h \"$GEOS_H\"\n\nsed \"s/@JTS_PORT@/$NAME/g\" \"$GEOS_H\" > /tmp/geos.h && mv /tmp/geos.h \"$GEOS_H\"";
};
B7F969AB1C9622A900C78357 /* Copy geos_c.h */ = {
isa = PBXShellScriptBuildPhase;
Expand All @@ -1506,7 +1506,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "cp ${SRCROOT}/geos/capi/geos_c.h.in ${SRCROOT}/geos/capi/geos_c.h\nexit 0";
shellScript = "cp \"${SRCROOT}/geos/capi/geos_c.h.in\" \"${SRCROOT}/geos/capi/geos_c.h\"\nexit 0";
};
/* End PBXShellScriptBuildPhase section */

Expand Down