forked from layoutBox/FlexLayout
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFlexLayout.podspec
More file actions
25 lines (22 loc) · 833 Bytes
/
FlexLayout.podspec
File metadata and controls
25 lines (22 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Pod::Spec.new do |spec|
spec.name = "FlexLayout"
spec.version = "1.3.17"
spec.summary = "FlexLayout"
spec.homepage = "https://github.com/lucdion/FlexLayout.git"
spec.license = "MIT license"
spec.author = { "Luc Dion" => "luc_dion@yahoo.com" }
spec.platform = :ios, "8.0"
spec.source = { :git => "https://github.com/lucdion/FlexLayout.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/**/*.{swift,h,m,mm,cpp,c}"
spec.public_header_files = "Sources/yoga/{Yoga,YGEnums,YGMacros}.h", "Sources/YogaKit/{UIView+Yoga,YGLayout}.h"
spec.libraries = 'c++'
# Should match yoga_defs.bzl + BUCK configuration
spec.compiler_flags = [
'-fno-omit-frame-pointer',
'-fexceptions',
'-Wall',
'-Werror',
'-std=c++1y',
'-fPIC'
]
end