forked from layoutBox/FlexLayout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlexLayout.podspec
More file actions
28 lines (23 loc) · 820 Bytes
/
FlexLayout.podspec
File metadata and controls
28 lines (23 loc) · 820 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
26
27
28
Pod::Spec.new do |spec|
spec.name = "FlexLayout"
spec.version = "2.2.1"
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, "13.4"
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/YogaKit/include/YogaKit/*.h"
spec.libraries = 'c++'
# Should match yoga_defs.bzl + BUCK configuration
spec.compiler_flags = [
'-fno-omit-frame-pointer',
'-fexceptions',
'-Wall',
'-Werror',
'-std=c++20',
'-fPIC'
]
spec.dependency 'Yoga', '3.2.1'
end