Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
2k views

XCode: How to set debug environment with multiple xcconfig files?

I'm using XCode 3.2 with xcconfig files. The files are organized by target. For example, I have a debug.xcconfig file and a release.xcconfig one. Both uses common settings, so I added a ...
9
votes
1answer
2k views

How can I use .xcconfig files in Xcode 4?

I just switched over to Xcode 4 and I'm having trouble working with .xcconfig files for build settings. My targets that already had files assigned in Xcode 3 are all set up - a column titled ...
8
votes
5answers
2k views

How to append values in xcconfig variables?

I'm using Xcode and .xcconfig files. I'm trying to append some values in the preprocessor definitions, but I simply can't make it work. I tried the following (as well as many variations of this), ...
6
votes
2answers
2k views

iphone: get User Defined variable in Target's setting by code?

My project have multi-targets. Each target has its own Class file for setting stuff. I want to store that Class name in a target setting (Info.plist or Target's Building setting). So that I can define ...
3
votes
1answer
77 views

What's the best way to swap Xcode contents for projects intended for many clients?

I've got a relatively large Xcode project that produces a single app. However, I have many clients/customers who require deep customization and branding of said app. These configurations include ...
1
vote
2answers
28 views

When to use .xcconfig files

I have just set up three different configurations in my project for debug preview and release. No in Xcode there is an option to specify different .xconfig files per configuration. I am now wondering ...
1
vote
0answers
122 views

Xcode 4.1 building dependent project with different compiler, ignoring GCC_VERSION

I've moved my project from gcc to clang, and Xcode (4.1) builds it using clang, but my project depends on another xcodeproject (three20), and Xcode builds this using gcc. I want it to build everything ...
1
vote
2answers
660 views

Recommended way to set up xcconfig files

Is there any best recommended way for setting up xcconfig files? Where does the projects related fields go and where do target related go? What about multiple targets?
1
vote
1answer
717 views

Xcode xcconfig file and build rules

I have an Xcode project that contains many sub-projects. The main project file and all sub-projects have the same xcconfig file. Some of the sub-projects currently have a build rule set on them to use ...
1
vote
0answers
963 views

Xcode xcconfig: Configuring a dependency based on the target

In the quest to resolve the Objective-C namespace issue I'd like to experiment with prefixing a dependency's Objective-C classes based on the target being built. As an example, suppose I have in my ...
0
votes
1answer
19 views

xcode 4 — is there a way to echo stuff in config files?

I am working on a deeply nested Xcode project that uses config files to control settings. There are projects within projects within projects. Is it possible to echo stuff in the config files? In ...
0
votes
0answers
55 views

How to use environment variable in xcconfig #include?

in my project, I want to refer to an other xcconfig file, located in InDesign SDK. As this SDK may be installed at different locations, depending upon the machine, I prefer to declare an environment ...
0
votes
1answer
131 views

Looking for a BBEdit Syntax Coloring plugin for xcconfig files

I'm pretty sure the subject explains it all. Does anyone know if a beast like this exists anywhere? I already have a link to the BBEditSDK in the event there isn't. (I was just hoping I wouldn't have ...
0
votes
1answer
829 views

How to target specific arch during iphone universal(arm6/arm7) build

Im trying to define different ld and c flags for different arch. im using this.. OTHER_CFLAGS[sdk=iphoneos*][arch=arm6] = blabla and whatever is set here doesnt make it into the build.. even ...