Skip to content

Commit

Permalink
Factored out resources into two new subdues.
Browse files Browse the repository at this point in the history
 - filters and ui (xib)
 - those resources can bow be skipped if the host application provides it's own resources
  • Loading branch information
matej committed Jul 2, 2013
1 parent 040166c commit b9d7ef4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion DLCImagePickerController.podspec
Expand Up @@ -16,9 +16,17 @@ Pod::Spec.new do |s|

s.subspec 'Core' do |sp|
sp.source_files = 'Classes'
sp.resources = "Resources/**/*.*", "Images/{UI,Overlays}/*.png"
sp.resources = "Resources/*.xib", "Images/{UI,Overlays}/*.png"
sp.dependency 'GPUImage'
end

s.subspec 'Filters' do |sp|
sp.resources = "Resources/Filters/*.acv"
end

s.subspec 'UI' do |sp|
sp.resources = "Resources/*.xib"
end

s.subspec 'FilterSamples' do |sp|
sp.resources = "Images/FilterSamples/*.jpg"
Expand Down

0 comments on commit b9d7ef4

Please sign in to comment.