see if this fixes spm

This commit is contained in:
Erik Little 2017-09-19 21:10:32 -04:00
parent ce8f1523cf
commit bf2beb7431
No known key found for this signature in database
GPG Key ID: 4930B7C5FBC1A69D
3 changed files with 6 additions and 3 deletions

View File

@ -14,4 +14,4 @@ script:
- xcodebuild -project Socket.IO-Client-Swift.xcodeproj -scheme SocketIO-Mac build test -quiet - xcodebuild -project Socket.IO-Client-Swift.xcodeproj -scheme SocketIO-Mac build test -quiet
# - xcodebuild -project Socket.IO-Client-Swift.xcodeproj -scheme SocketIO-Mac build-for-testing -quiet # - xcodebuild -project Socket.IO-Client-Swift.xcodeproj -scheme SocketIO-Mac build-for-testing -quiet
# - xctool -project Socket.IO-Client-Swift.xcodeproj -scheme SocketIO-Mac run-tests --parallelize # - xctool -project Socket.IO-Client-Swift.xcodeproj -scheme SocketIO-Mac run-tests --parallelize
# - swift build - swift build

View File

@ -4,10 +4,13 @@ import PackageDescription
let package = Package( let package = Package(
name: "SocketIO", name: "SocketIO",
products: [
.library(name: "SocketIO", targets: ["SocketIO"])
],
dependencies: [ dependencies: [
.package(url: "https://github.com/nuclearace/Starscream", from: "8.0.0"), .package(url: "https://github.com/nuclearace/Starscream", from: "8.0.0"),
], ],
targets: [ targets: [
.target(name: "SocketIO", exclude: ["Sources/Starscream"]) .target(name: "SocketIO", dependencies: ["StarscreamSocketIO"], exclude: ["Sources/Starscream"])
] ]
) )

@ -1 +1 @@
Subproject commit 3f5f50ad159a27fb43cb90b5286c3b2148c2b51e Subproject commit 9ecc44c2da053b1c4ff0ac505fe1d43a793d0b45