cocoapods 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/cocoapods.rb +1 -1
- data/lib/cocoapods/installer.rb +3 -2
- metadata +2 -2
data/lib/cocoapods.rb
CHANGED
data/lib/cocoapods/installer.rb
CHANGED
|
@@ -33,8 +33,9 @@ module Pod
|
|
|
33
33
|
|
|
34
34
|
def xcconfig
|
|
35
35
|
@xcconfig ||= Xcode::Config.new({
|
|
36
|
-
#
|
|
37
|
-
'
|
|
36
|
+
# In a workspace this is where the static library headers should be found
|
|
37
|
+
# We could also make this recursive, but let's let the user decide on that.
|
|
38
|
+
'USER_HEADER_SEARCH_PATHS' => '$(BUILT_PRODUCTS_DIR)/Pods',
|
|
38
39
|
# search the user headers
|
|
39
40
|
'ALWAYS_SEARCH_USER_PATHS' => 'YES',
|
|
40
41
|
})
|