Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
a5ca2cd0
Commit
a5ca2cd0
authored
Nov 26, 2011
by
Eloy Duran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Turns out that quoting the PODS_ROOT definition in the xcconfig file breaks building after all...
parent
4963f728
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
5 deletions
+11
-5
project.pbxproj
...xample/AFNetworking iOS Example.xcodeproj/project.pbxproj
+0
-2
contents.xcworkspacedata
...tworking iOS Example.xcworkspace/contents.xcworkspacedata
+10
-2
target_installer.rb
lib/cocoapods/installer/target_installer.rb
+1
-1
No files found.
examples/AFNetworking iOS Example/AFNetworking iOS Example.xcodeproj/project.pbxproj
View file @
a5ca2cd0
...
@@ -316,7 +316,6 @@
...
@@ -316,7 +316,6 @@
GCC_WARN_SIGN_COMPARE
=
YES
;
GCC_WARN_SIGN_COMPARE
=
YES
;
GCC_WARN_UNUSED_PARAMETER
=
NO
;
GCC_WARN_UNUSED_PARAMETER
=
NO
;
INFOPLIST_FILE
=
Info.plist
;
INFOPLIST_FILE
=
Info.plist
;
OTHER_LDFLAGS
=
""
;
PRODUCT_NAME
=
"$(TARGET_NAME)"
;
PRODUCT_NAME
=
"$(TARGET_NAME)"
;
SKIP_INSTALL
=
YES
;
SKIP_INSTALL
=
YES
;
WRAPPER_EXTENSION
=
app
;
WRAPPER_EXTENSION
=
app
;
...
@@ -337,7 +336,6 @@
...
@@ -337,7 +336,6 @@
GCC_WARN_SIGN_COMPARE
=
YES
;
GCC_WARN_SIGN_COMPARE
=
YES
;
GCC_WARN_UNUSED_PARAMETER
=
NO
;
GCC_WARN_UNUSED_PARAMETER
=
NO
;
INFOPLIST_FILE
=
Info.plist
;
INFOPLIST_FILE
=
Info.plist
;
OTHER_LDFLAGS
=
""
;
PRODUCT_NAME
=
"$(TARGET_NAME)"
;
PRODUCT_NAME
=
"$(TARGET_NAME)"
;
SKIP_INSTALL
=
YES
;
SKIP_INSTALL
=
YES
;
VALIDATE_PRODUCT
=
YES
;
VALIDATE_PRODUCT
=
YES
;
...
...
examples/AFNetworking iOS Example/AFNetworking iOS Example.xcworkspace/contents.xcworkspacedata
View file @
a5ca2cd0
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Workspace
version=
"1.0"
><FileRef
location=
"group:Pods/Pods.xcodeproj"
></FileRef><FileRef
location=
"group:AFNetworking iOS Example.xcodeproj"
></FileRef></Workspace>
<?xml version="1.0" encoding="UTF-8"?>
\ No newline at end of file
<Workspace
version =
"1.0"
>
<FileRef
location =
"group:AFNetworking iOS Example.xcodeproj"
>
</FileRef>
<FileRef
location =
"group:Pods/Pods.xcodeproj"
>
</FileRef>
</Workspace>
lib/cocoapods/installer/target_installer.rb
View file @
a5ca2cd0
...
@@ -13,7 +13,7 @@ module Pod
...
@@ -13,7 +13,7 @@ module Pod
def
xcconfig
def
xcconfig
@xcconfig
||=
Xcodeproj
::
Config
.
new
({
@xcconfig
||=
Xcodeproj
::
Config
.
new
({
# In a workspace this is where the static library headers should be found.
# In a workspace this is where the static library headers should be found.
'PODS_ROOT'
=>
'
"$(SRCROOT)/Pods"
'
,
'PODS_ROOT'
=>
'
$(SRCROOT)/Pods
'
,
'HEADER_SEARCH_PATHS'
=>
'"$(PODS_ROOT)/Headers"'
,
'HEADER_SEARCH_PATHS'
=>
'"$(PODS_ROOT)/Headers"'
,
'ALWAYS_SEARCH_USER_PATHS'
=>
'YES'
,
# needed to make EmbedReader build
'ALWAYS_SEARCH_USER_PATHS'
=>
'YES'
,
# needed to make EmbedReader build
# This makes categories from static libraries work, which many libraries
# This makes categories from static libraries work, which many libraries
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment