-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from layoutBox/integrates_yoga_sources
Integrates Yoga sources into FlexLayout
- Loading branch information
Showing
37 changed files
with
4,185 additions
and
222 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
6 changes: 0 additions & 6 deletions
6
Carthage/Build/iOS/YogaKit.framework/Modules/module.modulemap
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
Carthage/Build/iOS/YogaKit.framework/PrivateHeaders/Yoga-internal.h
This file was deleted.
Oops, something went wrong.
Binary file not shown.
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 |
---|---|---|
|
@@ -33,4 +33,3 @@ class BaseViewController: UIViewController { | |
} | ||
} | ||
} | ||
|
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,21 +1,27 @@ | ||
|
||
Pod::Spec.new do |s| | ||
s.name = "FlexLayout" | ||
s.version = "1.2.3" | ||
s.summary = "FlexLayout" | ||
Pod::Spec.new do |spec| | ||
spec.name = "FlexLayout" | ||
spec.version = "1.2.4" | ||
spec.summary = "FlexLayout" | ||
|
||
s.homepage = "https://github.com/lucdion/FlexLayout.git" | ||
s.license = "BSD 3-clause" | ||
spec.homepage = "https://github.com/lucdion/FlexLayout.git" | ||
spec.license = "BSD 3-clause" | ||
|
||
s.author = { | ||
spec.author = { | ||
"Luc Dion" => "ldion@mirego.com" | ||
} | ||
|
||
s.platform = :ios, "9.0" | ||
spec.platform = :ios, "9.0" | ||
|
||
s.source = { :git => "https://github.com/lucdion/FlexLayout.git", :tag => "#{s.version}" } | ||
s.source_files = "Sources/**/*.{swift,h,m}" | ||
spec.source = { :git => "https://github.com/lucdion/FlexLayout.git", :tag => "#{spec.version}" } | ||
spec.source_files = "Sources/**/*.{swift,h,m,cpp,c}" | ||
|
||
# Latest master commit id. | ||
s.dependency "Yoga", "1.6" | ||
#spec.compiler_flags = [ | ||
# '-fno-omit-frame-pointer', | ||
# '-fexceptions', | ||
# '-Wall', | ||
# '-Werror', | ||
# '-std=c11', | ||
# '-fPIC' | ||
#] | ||
end |
Oops, something went wrong.