The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
178 views

Using CocoaPods with multiple projects

I have a workspace that contains: myiPhone.xcodeproj sharedStuff/sharedStuff.xcodeproj sharedStuff.xcodeproj builds a static library that is a dependency to myiPhone.xcodeproj (for simplicity ...
0
votes
0answers
116 views

Howto define distinct xcconfig parameters in Cocoapod subspecs?

I've developed an iOS project that is a class library dealing with different servers. Only one server is needed per application in which the library is used. The server type is configurable through a ...
2
votes
0answers
160 views

How to distinguish between “Ad Hoc” and “App Store” Code Signing Identities in xcconfig files?

I'm trying to set up a Unity iOS project to run automated builds through Jenkins. So far, I've got Jenkins triggering a Unity build, which generates an XCode project. Then, using xcodebuild with ...
0
votes
1answer
97 views

how to set target for a file/bundle in xcconfig file

As we known, we can set target membership for a certain file/bundle in right navigator of xcode. But now I want to set target membership in a certain configuration. So how can I set target for a ...
0
votes
1answer
56 views

xcconfig files device families - universal

I am changing the name of my app based on the device it is running on through configuration files, i.e. I put in an _iPhone, _iPad or _Universal in the display name accordingly. To do this I am ...
2
votes
3answers
386 views

Pre-processor macros in xcconfig files

is is possible to use macros in config files? I want to achieve something like: if iPad set variable to 1 else set variable to 0 Is that possible? I would rather not use scripts for this.
0
votes
1answer
370 views

iOS: Specify code sign identity in .xcconfig file by target

So I have a .xcconfig file set up and wired to a specific target (there are more targets in the project) in the Project settings on the Info tab in the Configurations pane. The contents of the ...
4
votes
1answer
546 views

Is there a way export xcode build settings to .xcconfig file?

Is it possible to export xcode build settings to .xcconfig file? Other than just copy-paste it to text file line-by-line. Thanks!
0
votes
2answers
160 views

Xcode linker error, cannot find lib in /usr/lib

I am getting a linker error in XCode 3.2 where it claims to not be able to find libs in /usr/lib even though LIBRARY_SEARCH_PATHS = "/usr/lib" and the dylib has been added to the xcode project. The ...
2
votes
1answer
323 views

Can you set architecture specific Build Settings in an .xcconfig file in Xcode 4.3?

I want to set Build Settings that are specific to each architecture (armv6 vs armv7). This is easy enough to do in the Xcode GUI, but I try to put all project configuration in .xcconfig files. Is it ...
6
votes
2answers
1k 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
1answer
200 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 ...
2
votes
2answers
465 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 ...
4
votes
1answer
283 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
0answers
287 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
1answer
199 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 ...
35
votes
2answers
10k 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 ...
9
votes
2answers
4k 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 ...
0
votes
1answer
962 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 ...
3
votes
2answers
2k 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?
2
votes
1answer
1k 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
1k 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 ...
11
votes
4answers
3k 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 ...
17
votes
6answers
5k 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), ...