# # Be sure to run `pod lib lint SignalCoreKit.podspec' to ensure this is a # valid spec before submitting. # # Any lines starting with a # are optional, but their use is encouraged # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html # Pod::Spec.new do |s| s.name = "SignalCoreKit" s.version = "1.0.0" s.summary = "A Swift & Objective-C library used by other Signal libraries." s.homepage = "https://github.com/signalapp/SignalCoreKit" s.license = 'GPLv3' s.author = { "iOS Team" => "ios@signal.org" } s.source = { :git => "https://github.com/signalapp/SignalCoreKit.git", :tag => s.version.to_s } s.social_media_url = 'https://twitter.com/signalapp' s.platform = :ios, '10.0' s.requires_arc = true s.swift_version = '5.0' s.source_files = 'SignalCoreKit/src/**/*.{h,m,mm,swift}', 'SignalCoreKit/Private/**/*.{h,m,mm,swift}' s.public_header_files = 'SignalCoreKit/src/**/*.h' s.prefix_header_file = 'SignalCoreKit/SCKPrefix.h' s.xcconfig = { 'OTHER_CFLAGS' => '$(inherited) -DSQLITE_HAS_CODEC' } s.dependency 'CocoaLumberjack' s.dependency 'OpenSSL-Universal' s.test_spec 'Tests' do |test_spec| test_spec.source_files = 'SignalCoreKitTests/src/**/*.{h,m,swift}' end end