-
Notifications
You must be signed in to change notification settings - Fork 0
/
Flex.podspec
23 lines (23 loc) · 1.12 KB
/
Flex.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |spec|
spec.name = "Flex"
spec.version = "0.18.0"
spec.summary = "Flex"
spec.homepage = "https://github.com/nesium/Flex.git"
spec.license = "MIT license"
spec.author = "Marc Bauer"
spec.platform = :ios, "10.0"
spec.source = { :git => "https://github.com/nesium/Flex.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/Flex.h", "Sources/Flex/**/*.{swift,h}", "Sources/Yoga/**/*.cpp", "Sources/YogaDebug/**/*.{h,mm}"
spec.public_header_files = "Sources/Flex.h"
spec.exclude_files = "Sources/Flex/Layout/FlexLayout+Debug.swift"
spec.swift_version = "5.1"
spec.module_name = "Flex"
spec.preserve_paths = "Sources/Yoga/include/module.modulemap", "yoga/yoga/**/*.{h,cpp}", "Sources/Yoga/include"
spec.pod_target_xcconfig = {
"SWIFT_INCLUDE_PATHS" => "$(SRCROOT)/Flex/Sources/Yoga/**",
"HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/Flex/Sources/Yoga/include"
}
spec.xcconfig = {
"CLANG_CXX_LANGUAGE_STANDARD" => "gnu++14"
}
end