forked from fkuehne/upnpx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
upnpx.podspec
24 lines (22 loc) · 1.18 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
Pod::Spec.new do |s|
s.name = 'upnpx'
s.version = '1.3.3'
s.license = 'BSD'
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.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