Skip to content

Commit

Permalink
Fixed Issue #28 by specifying which headers should be public
Browse files Browse the repository at this point in the history
  • Loading branch information
abbeycode committed Nov 2, 2015
1 parent bdcc1f2 commit 65389fa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion UnrarKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ Pod::Spec.new do |s|
s.source = { :git => "https://github.com/abbeycode/UnrarKit.git", :tag => "#{s.version}" }
s.ios.deployment_target = "5.0"
s.osx.deployment_target = "10.7"
s.requires_arc = 'Classes/**/*'
s.requires_arc = "Classes/**/*"
s.source_files = "Classes/**/*.{mm,m,h}"
s.public_header_files = "Classes/*.h"

s.subspec "unrar-lib" do |ss|
ss.public_header_files = "Libraries/unrar/raros.hpp",
"Libraries/unrar/dll.hpp"
ss.source_files = "Libraries/unrar/*.hpp",
"Libraries/unrar/rar.cpp",
"Libraries/unrar/strlist.cpp",
Expand Down

0 comments on commit 65389fa

Please sign in to comment.