diff options
author | mmentovai@google.com <mmentovai@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-18 18:10:23 +0000 |
---|---|---|
committer | mmentovai@google.com <mmentovai@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-18 18:10:23 +0000 |
commit | 80179e1130f6549bed35468c5f2c41534d6b2972 (patch) | |
tree | 44da7aada77875c3f41dd36d0f9708ed2cddf32a | |
parent | 84763338e05f77ed57d1060ae71ab2bc71a43a78 (diff) | |
download | chromium_src-80179e1130f6549bed35468c5f2c41534d6b2972.zip chromium_src-80179e1130f6549bed35468c5f2c41534d6b2972.tar.gz chromium_src-80179e1130f6549bed35468c5f2c41534d6b2972.tar.bz2 |
Use a common directory for all build output on the Mac.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@987 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | build/common.xcconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/build/common.xcconfig b/build/common.xcconfig index 8cea311..910982b 100644 --- a/build/common.xcconfig +++ b/build/common.xcconfig @@ -34,5 +34,13 @@ GCC_ENABLE_PASCAL_STRINGS = NO GCC_INLINES_ARE_PRIVATE_EXTERN = YES GCC_SYMBOLS_PRIVATE_EXTERN = YES PREBINDING = NO + +// Each project file must set XCODEPROJ_DEPTH as a project-wide setting. It +// should contain a relative path to reach the src directory from the +// directory containing the project. For example, src/base/base.xcodeproj +// should set XCODEPROJ_DEPTH = ../.. . This is used to redirect all build +// output to a single common directory. +SYMROOT = $(XCODEPROJ_DEPTH)/xcodebuild + USE_HEADERMAP = NO WARNING_CFLAGS = -Wall |