-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
AABridge.podspec
35 lines (26 loc) · 1.27 KB
/
AABridge.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
Pod::Spec.new do |s|
s.name = "AABridge"
s.version = "3.0.0"
s.summary = "AABridge is a C bridge to AA+. It is the base upon which SwiftAA is crafted."
s.homepage = "https://www.onekiloparsec.dev/SwiftAA"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "onekiloparsec (a.k.a. Cédric Foellmi)" => "cedric@onekiloparsec.dev" }
s.social_media_url = "https://twitter.com/onekiloparsec"
# When using multiple platforms
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.13"
s.watchos.deployment_target = "7.0"
s.tvos.deployment_target = "12.0"
s.source = { :git => "https://github.com/onekiloparsec/SwiftAA.git", :tag => "#{s.version}" }
s.framework = "Foundation"
s.swift_version = "5"
s.name = "AABridge"
s.source_files = "Sources/AABridge", "Sources/AABridge/**/*.{h,cpp}", "Sources/aaplus-v2.50", "Sources/aaplus-v2.50/**/*.{h,cpp}"
s.public_header_files = "Sources/AABridge/include/*.h"
s.exclude_files = "Sources/aaplus-v2.50/AATest.cpp", "Sources/aaplus-v2.50/include/AAVSOP2013.h", "Sources/aaplus-v2.50/AAVSOP2013.cpp"
s.library = 'c++'
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++17',
'CLANG_CXX_LIBRARY' => 'libc++'
}
end