libmobilecoin-ios-artifacts/LibMobileCoin.podspec
Adam Mork 34d374fa42
v6.0.2 Release, add iOS minimum deployment target (#80)
* fix: linker errors with min deployment target

Signed-off-by: the-real-adammork <adammork@gmail.com>

* feat: update to latest v6.0.2 mobilecoin commit

Signed-off-by: the-real-adammork <adammork@gmail.com>

* feat: update version in cocoapod file

Signed-off-by: the-real-adammork <adammork@gmail.com>

---------

Signed-off-by: the-real-adammork <adammork@gmail.com>
Co-authored-by: mobilecoin-ci <mobilecoin-ci@mobilecoin.com>
2024-06-01 11:41:44 -07:00

138 lines
5.0 KiB
Ruby

Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "LibMobileCoin"
s.version = "6.0.2"
s.summary = "A library for communicating with MobileCoin network"
s.author = "MobileCoin"
s.homepage = "https://www.mobilecoin.com/"
s.license = { :type => "GPLv3" }
s.source = {
:git => "https://github.com/mobilecoinofficial/libmobilecoin.git",
:tag => "v#{s.version}",
:submodules => true
}
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios, "11.0"
# ――― Subspecs ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# s.default_subspecs = :none
s.default_subspecs = "Core"
s.subspec "TestVectors" do |subspec|
subspec.source_files = [
"Sources/TestVector/Util/Bundle+TestVector.swift",
"Sources/TestVector/Util/TestVectorError.swift"
]
subspec.preserve_paths = [
'Artifacts/target/**/libmobilecoin.a',
]
subspec.resources = [
"Sources/TestVector/vectors/*.*",
]
end
s.subspec "Core" do |subspec|
subspec.preserve_paths = [
'Artifacts/target/**/libmobilecoin.a',
]
subspec.source_files = [
"Artifacts/include/*.h",
"Sources/HTTP/*.{http}.swift",
"Sources/HTTP/Interface/*.swift",
"Sources/GRPC/*.{grpc}.swift",
"Sources/Common/*.{pb}.swift",
]
subspec.dependency "gRPC-Swift"
subspec.dependency "SwiftProtobuf", "~> 1.5"
end
s.subspec "CoreHTTP" do |subspec|
subspec.preserve_paths = [
'Artifacts/target/**/libmobilecoin.a',
]
subspec.source_files = [
"Artifacts/include/*.h",
"Sources/HTTP/*.{http}.swift",
"Sources/HTTP/Interface/*.swift",
"Sources/Common/*.{pb}.swift",
]
subspec.dependency "SwiftProtobuf", "~> 1.5"
end
s.subspec "CoreGRPC" do |subspec|
subspec.preserve_paths = [
'Artifacts/target/**/libmobilecoin.a',
]
subspec.source_files = [
"Artifacts/include/*.h",
"Sources/GRPC/*.{grpc}.swift",
"Sources/Common/*.{pb}.swift",
]
subspec.dependency "gRPC-Swift"
subspec.dependency "SwiftProtobuf", "~> 1.5"
end
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.swift_version = "5.2"
s.pod_target_xcconfig = {
"GCC_OPTIMIZATION_LEVEL" => "z",
# "LLVM_LTO" => "YES",
# Rust bitcode is not verified to be compatible with Apple Xcode's LLVM bitcode,
# so this is disabled to be on the safe side.
"ENABLE_BITCODE" => "YES",
# Mac Catalyst is not supported since tjis library includes a vendored binary
# that only includes support for iOS archictures.
"SUPPORTS_MACCATALYST" => "NO",
# The vendored binary doesn't include support for 32-bit architectures or arm64
# for iphonesimulator. This must be manually configured to avoid Xcode's default
# setting of building 32-bit and Xcode 12's default setting of including the
# arm64 simulator. Note: 32-bit is officially dropped in iOS 11
"HEADER_SEARCH_PATHS": "$(PODS_TARGET_SRCROOT)/Artifacts/include",
"SWIFT_INCLUDE_PATHS": "$(HEADER_SEARCH_PATHS)",
"LIBMOBILECOIN_LIB_IF_NEEDED": "$(PODS_TARGET_SRCROOT)/Artifacts/target/$(CARGO_BUILD_TARGET)/release/libmobilecoin.a",
"OTHER_LDFLAGS": "-lz -u _mc_string_free $(LIBMOBILECOIN_LIB_IF_NEEDED)",
"CARGO_BUILD_TARGET[sdk=iphonesimulator*][arch=arm64]": "aarch64-apple-ios-sim",
"CARGO_BUILD_TARGET[sdk=iphonesimulator*][arch=*]": "x86_64-apple-ios",
"CARGO_BUILD_TARGET[sdk=iphoneos*]": "aarch64-apple-ios",
"CARGO_BUILD_TARGET[sdk=macosx*][arch=arm64]": "aarch64-apple-darwin",
"CARGO_BUILD_TARGET[sdk=macosx*][arch=*]": "x86_64-apple-darwin",
"VALID_ARCHS[sdk=iphoneos*]" => "arm64",
"VALID_ARCHS[sdk=iphonesimulator*]" => "x86_64 arm64",
"ARCHS[sdk=iphonesimulator*]": "x86_64 arm64",
"ARCHS[sdk=iphoneos*]": "arm64",
"EXCLUDED_ARCHS[sdk=iphoneos*]" => "armv7",
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "i386",
}
# `user_target_xcconfig` should only be set when the setting needs to propogate to
# all targets that depend on this library.
s.user_target_xcconfig = {
"SUPPORTS_MACCATALYST" => "NO",
"EXCLUDED_ARCHS[sdk=iphoneos*]" => "armv7",
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "i386",
"VALID_ARCHS[sdk=iphoneos*]" => "arm64",
"VALID_ARCHS[sdk=iphonesimulator*]" => "x86_64 arm64",
}
end