-
Notifications
You must be signed in to change notification settings - Fork 113
/
upnpx.podspec
30 lines (28 loc) · 1.42 KB
/
upnpx.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
Pod::Spec.new do |s|
s.name = 'upnpx'
s.version = '1.4.3'
s.license = 'BSD'
s.ios.deployment_target = "6.1"
s.osx.deployment_target = "10.8"
s.tvos.deployment_target = '9.0'
s.summary = 'Open Source Mac OS X / iOS Cocoa UPnP Stack.'
s.homepage = 'https://github.com/fkuehne/upnpx'
s.authors = { 'Felix Paul Kühne' => '[email protected]', 'Bruno Keymolen' => '[email protected]', 'Paul Williamson' => '[email protected]' }
s.source = { :git => 'https://github.com/fkuehne/upnpx.git', :tag => s.version.to_s }
s.description = 'Static OS X & iOS UPnP library written in Cocoa (UPnP) and C++ (SSDP).' \
'The Current implementation has support for control point/client only.'
s.ios.source_files = 'src/{api,common,eventserver,ssdp,upnp}/*.{h,m,mm,c,cpp}', 'src/port/ios/*.{h,m}'
s.tvos.source_files = 'src/{api,common,eventserver,ssdp,upnp}/*.{h,m,mm,c,cpp}', 'src/port/ios/*.{h,m}'
s.osx.source_files = 'src/{api,common,eventserver,ssdp,upnp}/*.{h,m,mm,c,cpp}', 'src/port/macos/*.{h,m}'
s.ios.public_header_files = 'src/api/*.h', 'src/port/ios/*.h'
s.tvos.public_header_files = 'src/api/*.h', 'src/port/ios/*.h'
s.osx.public_header_files = 'src/api/*.h', 'src/port/macos/*.h'
s.library = 'c++'
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11',
'CLANG_CXX_LIBRARY' => 'libc++'
}
s.requires_arc = false
s.libraries = 'c++'
s.static_framework = true
end