forked from apple/swift-atomics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftAtomics-Pod.podspec
More file actions
21 lines (16 loc) · 1.27 KB
/
SwiftAtomics-Pod.podspec
File metadata and controls
21 lines (16 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |spec|
spec.name = 'SwiftAtomics-Pod'
spec.version = '0.2.0'
spec.summary = 'An atomics library for Swift'
spec.description = 'This package implements an atomics library for Swift, providing atomic operations for a variety of Swift types, including integers and pointer values. The goal is to enable intrepid developers to start building synchronization constructs directly in Swift.'
spec.homepage = 'https://github.com/apple/swift-atomics'
spec.swift_versions = '5.9'
spec.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' }
spec.authors = { 'Apple' => 'apple@apple.com', 'Marcio Martins' => 'marcioapm@gmail.com', 'Emilio Sison' => 'dunedubby@gmail.com' }
spec.source = { :git => 'https://github.com/Dunedubby/SwiftAtomics.git', :tag => spec.version.to_s }
spec.ios.deployment_target = '12.2'
spec.osx.deployment_target = '10.13'
spec.module_name = 'Atomics'
spec.source_files = 'Sources/**/*.{swift,h,c}'
spec.pod_target_xcconfig = { 'OTHER_SWIFT_FLAGS' => '$(inherited) -enable-experimental-feature BuiltinModule -D ATOMICS_NATIVE_BUILTINS' }
end