forked from google/flatbuffers
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moves swift package to root of repository so it can be used directly … (
google#7548) * Moves swift package to root of repository so it can be used directly from the main repo Fixing paths for swift directory * Update swift readme
- Loading branch information
1 parent
76ddae0
commit dadbff5
Showing
7 changed files
with
9 additions
and
11 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 |
---|---|---|
|
@@ -11,11 +11,11 @@ Pod::Spec.new do |s| | |
s.homepage = 'https://github.com/google/flatbuffers' | ||
s.license = { :type => 'Apache2.0', :file => 'LICENSE' } | ||
s.author = { 'mustii' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/mustiikhalil/flatbuffers.git', :tag => s.version.to_s, :submodules => true } | ||
s.source = { :git => 'https://github.com/google/flatbuffers.git', :tag => s.version.to_s, :submodules => true } | ||
|
||
s.ios.deployment_target = '11.0' | ||
s.osx.deployment_target = '10.14' | ||
|
||
s.swift_version = '5.0' | ||
s.source_files = 'Sources/Flatbuffers/*.swift' | ||
s.source_files = 'swift/Sources/Flatbuffers/*.swift' | ||
end |
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
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
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 |
---|---|---|
@@ -1,15 +1,11 @@ | ||
FlatBuffers swift can be found in both SPM | ||
|
||
`.package(url: "https://github.com/mustiikhalil/flatbuffers.git", from: "X.Y.Z"),` | ||
`.package(url: "https://github.com/google/flatbuffers.git", from: "X.Y.Z"),` | ||
|
||
and Cocoapods | ||
|
||
`pod 'FlatBuffers'` | ||
|
||
### Notes | ||
|
||
1- To report any error please use the main repository. | ||
|
||
### Contribute | ||
|
||
1- Always run `swift test --generate-linuxmain` whenever new test functions are added or removed |
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
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
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