-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 730abba
Showing
54 changed files
with
35,039 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Xcode | ||
# | ||
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore | ||
|
||
## User settings | ||
xcuserdata/ | ||
|
||
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) | ||
*.xcscmblueprint | ||
*.xccheckout | ||
|
||
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) | ||
build/ | ||
DerivedData/ | ||
*.moved-aside | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
|
||
## Obj-C/Swift specific | ||
*.hmap | ||
|
||
## App packaging | ||
*.ipa | ||
*.dSYM.zip | ||
*.dSYM | ||
|
||
## Playgrounds | ||
timeline.xctimeline | ||
playground.xcworkspace | ||
|
||
# Swift Package Manager | ||
# | ||
Packages/ | ||
Package.pins | ||
Package.resolved | ||
*.xcodeproj | ||
|
||
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata | ||
# hence it is not needed unless you have added a package configuration file to your project | ||
.swiftpm | ||
|
||
.build/ | ||
# Code Injection | ||
# | ||
# After new code Injection tools there's a generated folder /iOSInjectionProject | ||
# https://github.com/johnno1962/injectionforxcode | ||
|
||
iOSInjectionProject/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// swift-tools-version:5.3 | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Steam", | ||
platforms: [ | ||
.iOS(.v14), | ||
.macOS(.v11), | ||
.tvOS(.v14), | ||
.watchOS(.v7), | ||
], | ||
products: [ | ||
.library( | ||
name: "Steam", | ||
targets: ["Steam"]), | ||
], | ||
dependencies: [ | ||
.package( | ||
name: "CryptoSwift", | ||
url: "https://github.com/krzyzanowskim/CryptoSwift.git", | ||
.upToNextMinor(from: "1.3.8")), | ||
.package( | ||
name: "Gzip", | ||
url: "https://github.com/1024jp/GzipSwift.git", | ||
.upToNextMinor(from: "5.1.1")), | ||
.package( | ||
name: "SwCrypt", | ||
url: "https://github.com/soyersoyer/SwCrypt.git", | ||
.upToNextMinor(from: "5.1.4")), | ||
.package( | ||
name: "SwiftProtobuf", | ||
url: "https://github.com/apple/swift-protobuf.git", | ||
.upToNextMinor(from: "1.15.0")), | ||
], | ||
targets: [ | ||
.target( | ||
name: "Steam", | ||
dependencies: ["CryptoSwift", "Gzip", "SwCrypt", "SwiftProtobuf"], | ||
exclude: ["Protobuf"]), | ||
.testTarget( | ||
name: "SteamTests", | ||
dependencies: ["Steam"]), | ||
] | ||
) |
Oops, something went wrong.