Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Carthage fix #149

Closed
wants to merge 15 commits into from
Closed
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
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ Pods/
# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Checkouts
Cartfile.resolved
Carthage/Build
geos/geos

Expand Down
34 changes: 8 additions & 26 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,16 @@
language: objective-c
osx_image: xcode10.2
language: swift

before_install:
- gem install xcpretty
- gem install cocoapods -v '1.6.1'
- brew install swiftlint
- gem install cocoapods
- pod repo update
- pod install --verbose
- brew install swiftlint

after_success:
- bash <(curl -s https://codecov.io/bash) -J '^GEOSwift$'

osx_image: xcode10.2

cache: cocoapods

env:
global:
- WORKSPACE=GEOSwift.xcworkspace
- SCHEME=GEOSwift
- SDK=iphonesimulator12.2
matrix:
- DESTINATION="OS=12.2,name=iPhone XS"

script:
- set -o pipefail
- xcodebuild
-workspace "$WORKSPACE"
-scheme "$SCHEME"
-sdk "$SDK"
-destination "$DESTINATION"
-configuration Debug
ONLY_ACTIVE_ARCH=YES
clean test | xcpretty -c;
- fastlane scan --scheme "GEOSwiftTests" --device "iPhone Xs"

after_success:
- bash <(curl -s https://codecov.io/bash) -J '^GEOSwift$'
1 change: 1 addition & 0 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github "madhavajay/geos" "carthage"
2 changes: 1 addition & 1 deletion GEOSwift.playground/Contents.swift
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ geometry2
//:
if let geoJSONURL = Bundle.main.url(forResource: "multipolygon", withExtension: "geojson"),
let features = try? Features.fromGeoJSON(geoJSONURL),
let italy = features?.first?.geometries?.first as? MultiPolygon {
let italy = features.first?.geometries?.first as? MultiPolygon {

italy
//: ### Topological operations:
Expand Down
120 changes: 105 additions & 15 deletions GEOSwift.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@
objectVersion = 46;
objects = {

/* Begin PBXAggregateTarget section */
E284E3CA225C922B004FCB74 /* Carthage */ = {
isa = PBXAggregateTarget;
buildConfigurationList = E284E3CB225C922B004FCB74 /* Build configuration list for PBXAggregateTarget "Carthage" */;
buildPhases = (
E284E3CE225C9238004FCB74 /* ShellScript */,
);
dependencies = (
);
name = Carthage;
productName = Carthage;
};
/* End PBXAggregateTarget section */

/* Begin PBXBuildFile section */
335C11A98B9F38F1FD0BADB2 /* Pods_GEOSwiftTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FC30B2E0DB51B308F3F23D7D /* Pods_GEOSwiftTests.framework */; };
490B96CA2251A61200327D64 /* geometrycollection.png in Resources */ = {isa = PBXBuildFile; fileRef = 490B96C82251A61200327D64 /* geometrycollection.png */; };
Expand Down Expand Up @@ -41,7 +55,7 @@
CD2DE3A61B39750200E7BCD4 /* point.geojson in Resources */ = {isa = PBXBuildFile; fileRef = CDA09FFE1B3968B00092C6C6 /* point.geojson */; };
CDB7EC051B287CE70055835C /* MapKitTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDB7EC041B287CE70055835C /* MapKitTests.swift */; };
D36407561F7D0155001BBA46 /* multipolygonwithholes.geojson in Resources */ = {isa = PBXBuildFile; fileRef = D36407551F7D0155001BBA46 /* multipolygonwithholes.geojson */; };
DA312B501383705279D8884F /* Pods_GEOSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7BE8B8564B5063CCA6CC117 /* Pods_GEOSwift.framework */; };
DA312B501383705279D8884F /* Pods_GEOSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7BE8B8564B5063CCA6CC117 /* Pods_GEOSwift.framework */; settings = {ATTRIBUTES = (Required, ); }; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand All @@ -52,6 +66,13 @@
remoteGlobalIDString = CD2299831B10B506002C19AE;
remoteInfo = Humboldt;
};
E284E3CF225C9306004FCB74 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = CD6533A91B0E0DFF00DE6D84 /* Project object */;
proxyType = 1;
remoteGlobalIDString = E284E3CA225C922B004FCB74;
remoteInfo = Carthage;
};
/* End PBXContainerItemProxy section */

/* Begin PBXCopyFilesBuildPhase section */
Expand All @@ -69,6 +90,7 @@

/* Begin PBXFileReference section */
064004E2312FE3AA64F072FA /* Pods.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods.framework; sourceTree = BUILT_PRODUCTS_DIR; };
16CF083770D8E290F5713574 /* Pods-GEOSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GEOSwift.release.xcconfig"; path = "Pods/Target Support Files/Pods-GEOSwift/Pods-GEOSwift.release.xcconfig"; sourceTree = "<group>"; };
490B96C82251A61200327D64 /* geometrycollection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = geometrycollection.png; sourceTree = "<group>"; };
490B96C92251A61200327D64 /* waypoint.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = waypoint.png; sourceTree = "<group>"; };
4929BC7A1B0BE392CD9BD0CD /* Pods-GEOSwiftTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GEOSwiftTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-GEOSwiftTests/Pods-GEOSwiftTests.debug.xcconfig"; sourceTree = "<group>"; };
Expand All @@ -79,8 +101,7 @@
494B87E1210696D1009BE929 /* polygon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = polygon.png; sourceTree = "<group>"; };
4993ABE920F4F1CF0066547D /* LinearRef.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LinearRef.swift; sourceTree = "<group>"; };
4993ABEA20F4F1CF0066547D /* MiscFunctions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MiscFunctions.swift; sourceTree = "<group>"; };
537B2F7965DB5ECD6E1CFB64 /* Pods-GEOSwiftTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GEOSwiftTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-GEOSwiftTests/Pods-GEOSwiftTests.release.xcconfig"; sourceTree = "<group>"; };
7D7DCB36E4FE6316A656A43A /* Pods-GEOSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GEOSwift.debug.xcconfig"; path = "Pods/Target Support Files/Pods-GEOSwift/Pods-GEOSwift.debug.xcconfig"; sourceTree = "<group>"; };
4C566774E24E70B96EF79CB4 /* Pods-GEOSwiftTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GEOSwiftTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-GEOSwiftTests/Pods-GEOSwiftTests.debug.xcconfig"; sourceTree = "<group>"; };
818D7A7E1F5F5FDF00E55FB5 /* GeoJSONTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeoJSONTests.swift; sourceTree = "<group>"; };
81E4A0B41F0CB8C50073186F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = GEOSwift/Info.plist; sourceTree = SOURCE_ROOT; };
B7BE8B8564B5063CCA6CC117 /* Pods_GEOSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_GEOSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
Expand All @@ -107,9 +128,10 @@
CDB71B3B1B16210C0044B3DD /* multipolygon.geojson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = multipolygon.geojson; sourceTree = "<group>"; };
CDB71B3D1B16459A0044B3DD /* multipoint.geojson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = multipoint.geojson; sourceTree = "<group>"; };
CDB7EC041B287CE70055835C /* MapKitTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapKitTests.swift; sourceTree = "<group>"; };
CFF460E7BB9CB14C9E7C995E /* Pods-GEOSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GEOSwift.debug.xcconfig"; path = "Pods/Target Support Files/Pods-GEOSwift/Pods-GEOSwift.debug.xcconfig"; sourceTree = "<group>"; };
D36407551F7D0155001BBA46 /* multipolygonwithholes.geojson */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = multipolygonwithholes.geojson; sourceTree = "<group>"; };
F9D7B07F2256DCDA32B5635D /* Pods-GEOSwiftTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GEOSwiftTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-GEOSwiftTests/Pods-GEOSwiftTests.release.xcconfig"; sourceTree = "<group>"; };
FC30B2E0DB51B308F3F23D7D /* Pods_GEOSwiftTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_GEOSwiftTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
FF90076F32D911E63EE5ACA5 /* Pods-GEOSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GEOSwift.release.xcconfig"; path = "Pods/Target Support Files/Pods-GEOSwift/Pods-GEOSwift.release.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand All @@ -136,10 +158,10 @@
16F88BA0E437519EF7629362 /* Pods */ = {
isa = PBXGroup;
children = (
7D7DCB36E4FE6316A656A43A /* Pods-GEOSwift.debug.xcconfig */,
FF90076F32D911E63EE5ACA5 /* Pods-GEOSwift.release.xcconfig */,
4929BC7A1B0BE392CD9BD0CD /* Pods-GEOSwiftTests.debug.xcconfig */,
537B2F7965DB5ECD6E1CFB64 /* Pods-GEOSwiftTests.release.xcconfig */,
CFF460E7BB9CB14C9E7C995E /* Pods-GEOSwift.debug.xcconfig */,
16CF083770D8E290F5713574 /* Pods-GEOSwift.release.xcconfig */,
4C566774E24E70B96EF79CB4 /* Pods-GEOSwiftTests.debug.xcconfig */,
F9D7B07F2256DCDA32B5635D /* Pods-GEOSwiftTests.release.xcconfig */,
);
name = Pods;
sourceTree = "<group>";
Expand Down Expand Up @@ -281,6 +303,7 @@
buildRules = (
);
dependencies = (
E284E3D0225C9306004FCB74 /* PBXTargetDependency */,
);
name = GEOSwift;
productName = Humboldt;
Expand Down Expand Up @@ -328,13 +351,18 @@
LastSwiftMigration = 1020;
ProvisioningStyle = Automatic;
};
E284E3CA225C922B004FCB74 = {
CreatedOnToolsVersion = 10.2;
ProvisioningStyle = Automatic;
};
};
};
buildConfigurationList = CD6533AC1B0E0DFF00DE6D84 /* Build configuration list for PBXProject "GEOSwift" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
English,
en,
Base,
);
Expand All @@ -343,6 +371,7 @@
projectDirPath = "";
projectRoot = "";
targets = (
E284E3CA225C922B004FCB74 /* Carthage */,
CD2299831B10B506002C19AE /* GEOSwift */,
CD22998D1B10B506002C19AE /* GEOSwiftTests */,
);
Expand Down Expand Up @@ -414,7 +443,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
shellScript = "if [ -n \"$CARTHAGE\" ]; then\n echo \"Skipping Check Pods Manifest.lock\"\nelse\n diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\n if [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\n fi\n # This output is used by Xcode 'outputs' to avoid re-running this script phase.\n echo \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\nfi\n";
showEnvVarsInLog = 0;
};
839350CC20EFFA3300403B56 /* Swiftlint */ = {
Expand Down Expand Up @@ -449,6 +478,23 @@
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-GEOSwiftTests/Pods-GEOSwiftTests-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
E284E3CE225C9238004FCB74 /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
);
outputFileListPaths = (
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "if [ -n \"$CARTHAGE\" ]; then\nFRAMEWORK_DIR=$(SRCROOT)../../Build/iOS/\ncp -R $FRAMEWORK_DIR/geos.framework $FRAMEWORK_DIR/Pods_GEOSwift.framework\ncp $FRAMEWORK_DIR/Pods_GEOSwift.framework/geos $FRAMEWORK_DIR/Pods_GEOSwift.framework/Pods_GEOSwift\nelse\necho \"Skipping Carthage Copy Frameworks\"\nfi\n";
};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
Expand Down Expand Up @@ -490,12 +536,17 @@
target = CD2299831B10B506002C19AE /* GEOSwift */;
targetProxy = CD2299901B10B506002C19AE /* PBXContainerItemProxy */;
};
E284E3D0225C9306004FCB74 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = E284E3CA225C922B004FCB74 /* Carthage */;
targetProxy = E284E3CF225C9306004FCB74 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
CD22999E1B10B506002C19AE /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7D7DCB36E4FE6316A656A43A /* Pods-GEOSwift.debug.xcconfig */;
baseConfigurationReference = CFF460E7BB9CB14C9E7C995E /* Pods-GEOSwift.debug.xcconfig */;
buildSettings = {
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
CLANG_CXX_LIBRARY = "compiler-default";
Expand All @@ -505,6 +556,12 @@
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"\"${PODS_CONFIGURATION_BUILD_DIR}/geos\"",
"$(SRCROOT)/Carthage/Build/iOS",
"$(PROJECT_DIR)/Carthage/Build/iOS",
);
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
Expand All @@ -523,7 +580,7 @@
};
CD22999F1B10B506002C19AE /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = FF90076F32D911E63EE5ACA5 /* Pods-GEOSwift.release.xcconfig */;
baseConfigurationReference = 16CF083770D8E290F5713574 /* Pods-GEOSwift.release.xcconfig */;
buildSettings = {
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
CLANG_CXX_LIBRARY = "compiler-default";
Expand All @@ -534,6 +591,12 @@
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"\"${PODS_CONFIGURATION_BUILD_DIR}/geos\"",
"$(SRCROOT)/Carthage/Build/iOS",
"$(PROJECT_DIR)/Carthage/Build/iOS",
);
INFOPLIST_FILE = GEOSwift/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "it.andreacremaschi.$(PRODUCT_NAME:rfc1034identifier)";
Expand All @@ -548,10 +611,11 @@
};
CD2299A21B10B506002C19AE /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 4929BC7A1B0BE392CD9BD0CD /* Pods-GEOSwiftTests.debug.xcconfig */;
baseConfigurationReference = 4C566774E24E70B96EF79CB4 /* Pods-GEOSwiftTests.debug.xcconfig */;
buildSettings = {
CLANG_CXX_LIBRARY = "compiler-default";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGNING_REQUIRED = NO;
CODE_SIGN_IDENTITY = "";
COMPRESS_PNG_FILES = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
Expand All @@ -568,10 +632,11 @@
};
CD2299A31B10B506002C19AE /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 537B2F7965DB5ECD6E1CFB64 /* Pods-GEOSwiftTests.release.xcconfig */;
baseConfigurationReference = F9D7B07F2256DCDA32B5635D /* Pods-GEOSwiftTests.release.xcconfig */;
buildSettings = {
CLANG_CXX_LIBRARY = "compiler-default";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGNING_REQUIRED = NO;
CODE_SIGN_IDENTITY = "";
COMPRESS_PNG_FILES = NO;
INFOPLIST_FILE = GEOSwiftTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited)";
Expand Down Expand Up @@ -687,6 +752,22 @@
};
name = Release;
};
E284E3CC225C922B004FCB74 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
};
E284E3CD225C922B004FCB74 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
Expand Down Expand Up @@ -717,6 +798,15 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
E284E3CB225C922B004FCB74 /* Build configuration list for PBXAggregateTarget "Carthage" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E284E3CC225C922B004FCB74 /* Debug */,
E284E3CD225C922B004FCB74 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = CD6533A91B0E0DFF00DE6D84 /* Project object */;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
24 changes: 0 additions & 24 deletions GEOSwift.xcodeproj/xcshareddata/xcschemes/GEOSwift.xcscheme
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,6 @@
ReferencedContainer = "container:GEOSwift.xcodeproj">
</BuildableReference>
</BuildActionEntry>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "NO"
buildForArchiving = "NO"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "CD22998D1B10B506002C19AE"
BuildableName = "GEOSwiftTests.xctest"
BlueprintName = "GEOSwiftTests"
ReferencedContainer = "container:GEOSwift.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
Expand All @@ -43,16 +29,6 @@
codeCoverageEnabled = "YES"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "CD22998D1B10B506002C19AE"
BuildableName = "GEOSwiftTests.xctest"
BlueprintName = "GEOSwiftTests"
ReferencedContainer = "container:GEOSwift.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
<MacroExpansion>
<BuildableReference
Expand Down
Loading