-
Notifications
You must be signed in to change notification settings - Fork 0
/
caraml-console.podspec
39 lines (37 loc) · 1.38 KB
/
caraml-console.podspec
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
38
39
require "json"
lcpackage = JSON.parse(File.read(File.join(__dir__, "package.json")))
version = lcpackage['version']
Pod::Spec.new do |s|
s.name = "caraml-console"
s.version = version
s.summary = "ANSI console addon for caraml"
s.description = <<-DESC
An ANSI console view for use with caraml and LiquidCore.
DESC
s.homepage = "https://github.com/LiquidPlayer/caraml-console"
s.license = {:type => "MIT", :file => "LICENSE.md"}
s.author = { "Eric Lange" => "[email protected]" }
s.platform = :ios, '11.0'
s.source = { :git => "https://github.com/LiquidPlayer/caraml-console.git", :tag => "#{s.version}" }
s.source_files = "src/*.{cpp,h}",
"caraml-console/caraml-console/*.{h,m,mm}"
s.public_header_files = [
"caraml-console/caraml-console/caraml_console.h"
]
s.xcconfig = {
:CLANG_WARN_DOCUMENTATION_COMMENTS => 'NO',
:OTHER_CFLAGS => [
'-Wno-nullability-completeness'
].join(' '),
:HEADER_SEARCH_PATHS => [
"${PODS_CONFIGURATION_BUILD_DIR}/LiquidCore-headers/LiquidCore_headers.framework/PrivateHeaders/v8",
"${PODS_CONFIGURATION_BUILD_DIR}/LiquidCore-headers/LiquidCore_headers.framework/PrivateHeaders/node",
].join(' '),
}
s.resources = [
'caraml-console/caraml-console/ConsoleView.xib',
]
s.dependency "caraml-core"
s.dependency "LiquidCore"
s.dependency "LiquidCore-headers"
end