-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHYPWebSocketServerPlugin.podspec
More file actions
28 lines (19 loc) · 961 Bytes
/
Copy pathHYPWebSocketServerPlugin.podspec
File metadata and controls
28 lines (19 loc) · 961 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 |s|
s.name = "HYPWebSocketServerPlugin"
s.version = "0.1.0"
s.summary = "An on device web socket server plugin for Hyperion"
s.homepage = "http://github.com/fuzzybinary/HYPWebSocketServerPlugin"
s.license = "MIT"
s.author = { "Jeff Ward" => "jeff.ward@willowtreeapps.com" }
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/fuzzybinary/HYPWebSocketServerPlugin.git", :tag => "#{s.version}" }
s.source_files = "HYPWebSocketServerPlugin", "HYPWebSocketServerPlugin/**/*.{h,m}"
s.resources = "HYPWebSocketServerPlugin/Resources/*.png"
s.compiler_flags = "-Wnon-modular-include-in-framework-module"
s.ios.user_target_xcconfig = {
"OTHER_LDFLAGS" => "-Wnon-modular-include-in-framework-module",
"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES" => "YES"
}
s.dependency "HyperioniOS/Core"
s.dependency "JWPocketSocket", "~>0.7.0"
end