-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprism.podspec
More file actions
37 lines (27 loc) · 937 Bytes
/
prism.podspec
File metadata and controls
37 lines (27 loc) · 937 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
29
30
31
32
33
34
35
36
37
Pod::Spec.new do |s|
s.name = "prism"
s.version = "1.0.0"
s.summary = "c++ static reflection header only library "
s.homepage = "https://github.com/cpp-prism/prism"
s.license = "MIT"
s.authors = "hbb"
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.15'
s.source_files = "include/**/*.{cpp,c,h,hpp}"
s.public_header_files = "include/**/*.{cpp,c,h,hpp}"
#s.private_header_files = "include/**/*.{cpp,c,h,hpp}"
s.header_mappings_dir = "include"
s.source = { :git => "https://github.com/nocanstillbb/prism-rn.git" }
root = File.expand_path(__dir__)
#s.xcconfig = {
# 'HEADER_SEARCH_PATHS' => [
# "\"#{root}/include\"",
# "\"#{root}/include/prism\"",
# "\"#{root}/include/prism/utilities\"",
# ].join(' ')
#}
s.pod_target_xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++17',
'CLANG_CXX_LIBRARY' => 'libc++'
}
end