瀏覽代碼

Merge pull request #457 from ronaldmannak/swift4

Fixed syntax error in Swift 4 podspec
Marcin Krzyzanowski 8 年之前
父節點
當前提交
f9a8ede667
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      CryptoSwift.podspec

+ 1 - 1
CryptoSwift.podspec

@@ -13,6 +13,6 @@ Pod::Spec.new do |s|
   s.watchos.deployment_target = "2.0"
   s.tvos.deployment_target = "9.0"
   s.source_files  = "Sources/CryptoSwift/**/*.swift"
-  s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0', 'SWIFT_OPTIMIZATION_LEVEL' = '-Owholemodule' }
+  s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0', 'SWIFT_OPTIMIZATION_LEVEL' => '-Owholemodule' }
   s.requires_arc = true
 end