From b05d1792a415bbb5771d3ec7c1956725a80f19f7 Mon Sep 17 00:00:00 2001 From: Timofey Solomko Date: Wed, 1 May 2019 19:12:37 +0300 Subject: [PATCH] Add CodingTree source path to relevant subspecs in the podspec --- SWCompression.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SWCompression.podspec b/SWCompression.podspec index 3f8e572b..e00a0841 100644 --- a/SWCompression.podspec +++ b/SWCompression.podspec @@ -25,7 +25,7 @@ Pod::Spec.new do |s| s.dependency "BitByteData", "~> 1.4.0" s.subspec "Deflate" do |sp| - sp.source_files = "Sources/{Deflate/*,Common/*}.swift" + sp.source_files = "Sources/{Deflate/*,Common/*,Common/CodingTree/*}.swift" sp.pod_target_xcconfig = { "OTHER_SWIFT_FLAGS" => "-DSWCOMPRESSION_POD_DEFLATE" } end @@ -40,7 +40,7 @@ Pod::Spec.new do |s| end s.subspec "BZip2" do |sp| - sp.source_files = "Sources/{BZip2/*,Common/*}.swift" + sp.source_files = "Sources/{BZip2/*,Common/*,Common/CodingTree/*}.swift" sp.pod_target_xcconfig = { "OTHER_SWIFT_FLAGS" => "-DSWCOMPRESSION_POD_BZ2" } end