-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupnpx.podspec
26 lines (24 loc) · 1.24 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
Pod::Spec.new do |s|
s.name = 'upnpx'
s.version = '1.3.4'
s.license = 'BSD'
s.ios.deployment_target = "6.1"
s.osx.deployment_target = "10.6"
s.summary = 'Open Source Mac OS X / iOS Cocoa UPnP Stack.'
s.homepage = 'https://github.com/fkuehne/upnpx'
s.authors = { 'Felix Paul Kühne' => 'fkuehne@videolan.org', 'Bruno Keymolen' => 'bruno.keymolen@gmail.com', 'Paul Williamson' => 'squarefrog@gmail.com' }
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.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.osx.public_header_files = 'src/api/*.h', 'src/port/macos/*.h'
s.library = 'stdc++'
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++0x',
'CLANG_CXX_LIBRARY' => 'libstdc++',
'OTHER_LDFLAGS' => '-weak_library /usr/lib/libstdc++.dylib'
}
s.requires_arc = false
end