Tagged Questions
2
votes
3answers
118 views
How to use different resource files for different build targets in MFC
I have a few resources that are target specific. Like a different dialog for target client and a different dialog for target admin. And also a few strings that are specific to each of the targets. I ...
0
votes
0answers
39 views
QMake relinks targets when it is unnesessary
Is it normal that QMake relinks targets in the following case:
qmake
make <- build = compile + link
make <- relink
make <- relink
...
make <- relink
NOTE: I do not change the source ...
2
votes
5answers
521 views
Developing apps for multiple iOS version
I am testing an app on an iPhone 4 with iOS 5.1 and an iPad 4 with iOS 6.0. I looked around and surprisingly did not find similar questions:
1- My app has some methods that have been deprecated in ...
1
vote
1answer
170 views
Eclipse gets NullPointerException when selecting an Android Build as a Build Target for Android Test Project
I'm trying to create a new Android Test Project, and when I get to the point where you select a Build Target, I pick Android 2.2 (but this goes for any Android version I pick). I get a NPE, and then ...
0
votes
2answers
553 views
Building for 2 different targets in an Xcode project has unexpected results
I'm using Xcode 4.3.3. My project has 2 targets and they are very similar (one was a duplicate of the other). The only thing is they have different names and there is a small amount of #ifdef going ...
1
vote
2answers
434 views
Changed iPhone App Target Name, now app “Finished Running”
I made one very innocent change to my app: I changed the name of the target by clicking on the icon itself in the menu tray and changing its name there (I changed it to "Subject", on the odd chance ...
0
votes
1answer
167 views
How to call rake target twice
I generate two different sets of DLL files from my .sln by modifying the .csproj files to include an extra compilation symbol. I'm using rake to build the solution, and have the following Build task:
...
1
vote
2answers
694 views
How change build target (2.2 to 2.3.3)? Or recover after trying
I need to change my projects's build target from 2.2 to 2.3.3 in order to use Google API with map support. I changed the manifest's min- and target SdkVersion to 10. And the project's ...
2
votes
0answers
397 views
VS2010: Create a custom build rule to run on all files of a given filetype in a given folder
So I have a VS2010 project which contains a folder called "Levels" with "Level1.xml", "Level2.xml", etc. I have a custom build tool I want to run on these XML files, and so far, I've been individually ...
2
votes
2answers
466 views
How to copy and paste files in Compile Sources from one target to another?
I have a main target that have certain files included under its target -> Build Phases -> Compile Sources. I'm starting a unit test and would like the unit test to include the same files as the main ...
0
votes
1answer
225 views
How to set properties, classpath and project files to editable in android?
I am trying to change the target build of my Android project from 3.2 to 1.6.
However I cannot change it from properties of the project directly. It keeps overwriting my choice.
I checked the ...
0
votes
1answer
45 views
Effect of mutually dependent targets in Xcode 4?
In my project, I have my main target (The one with all my product code).
Halfway through the project I created another target to hold unit tests.
I have made my main target dependent on the unit ...
0
votes
3answers
2k views
Android Build Targets
I have experience in java and I was thinking in starting developing for Android now. Trouble is I have an Android Phone with 2.1-update1 and an Eee Pad Transfomer with 3.1 and I would like to build ...
4
votes
5answers
2k views
iphone: Use different icons with different build targets?
Right now I have a regular iphone app with unique springboard icon and splash screens. Now I want to create basically the same app with minor changes - and this app will have a different name, ...
2
votes
3answers
1k views
How to recreate a deleted target?
I have deleted my application target and now all my Build option are gone. I cannot run my project because I am missing a target. How can I regenerate it?
0
votes
1answer
78 views
Why does Xcode4 compile test target when I build non-test target
Xcode4 project contains two targets: "normal" application target and "test" target. When I select "normal" target scheme and do build, I get compile errors and warnings from both targets.
"Normal" ...
0
votes
3answers
60 views
How should I use a library of classes I made in Xcode for an iPhone application?
I wrote a set of objective c classes, which I now plan on using in a project of mine. My old way would be to copy-paste them in, but that's sloppy, especially now that Xcode has got me using unit ...
0
votes
4answers
3k views
Ant - Run a Build.xml for all subdirectories
I have a build.xml sitting at the top level and I want the script to run a target for each subdirectory and pass in the subdirectory name as a parameter to the ANT target.
Can you help ?/??
Thanks
0
votes
1answer
239 views
Makefile two compilers issue
I am asked to write a Makefile which needs to selects between two compilers, and each of these compilers should support 3 build versions (debug, release, test).
There are a lot of variables that ...
0
votes
1answer
779 views
How to select multiple Build Target in Eclipse for Android project?
I am reading Teach Yourself Android Application Development in 24 Hours, in Hour 6, it asks me to create a new Android Project with:
Build target: Android 2.1 + Google APIs
However, I can only ...
3
votes
2answers
2k views
Learning and Understanding the Xcode Build System
Alright, I'm curious about the build process with Xcode. Setting up multiple Targets, how to automate versioning and generally understanding the system so I can manipulate it to do what I want.
Does ...
36
votes
9answers
34k views
How to change target build on Android project?
I currently have an Android project in Eclipse.
I created it with a target build of 1.5 (sdk 3).
Now I want to change it so that it has a minSdk of 3 and targetSdk of 8.
To do this I see that I ...
2
votes
2answers
318 views
How can I use different .h files for several targets?
I have a project with several targets. For most of my classes, I can use a single .h file and change the details in the .m file (adding a different .m file for each target).
For one of my ...
0
votes
1answer
300 views
Extend the Visual Studio C++ Build Process
A found an article (Extend the Visual Studio Build Process) that explained how to override build targets in a C# project file. I tested this, and it seems to work well. However, what I really want ...
1
vote
1answer
362 views
Targets, Xcode and interface files
I have two apps which share a lot of source, so I want to put them into one Xcode project and use Targets to build them seperately. Some of the source files have the same name in both projects (for ...
50
votes
4answers
18k views
Warning: The Copy Bundle Resources build phase contains this target's Info.plist file
I've separated a project into two builds and given each of them a plist file. Everything works fine, but I keep getting this build warning:
Warning: The Copy Bundle Resources build phase contains ...
1
vote
1answer
441 views
Sometimes Xcode appears to ignore target build settings?
I've created a iPhone static library project with two targets like this
Project
--> Library (Device) target
--> Library (simulator) target
The device target has the SDK set to the device so it ...
23
votes
3answers
7k views
ant to maven - multiple build targets
I have an ant build that is currently being converted to maven. However, the ant build has 2 build targets - one that builds the entire app, and one that builds a jar from some of those files (only a ...
2
votes
2answers
5k views
Change the minimum OS requirments of my iPhone App?
I made a simple application, then submitted for review.
After that the app details claims that the minimum OS requirmentes is 3.1.2 (I work with that SDK).
If I change my Target's iPhone OS ...
4
votes
2answers
3k views
Run script during Clean / Clean All in Xcode
I have a fairly complex (iPhone SDK) Xcode project, with many targets -- 4 static libs, unit tests, multiple sample apps, a BuildAll that runs a shell script, and a Package that runs another shell ...
0
votes
1answer
1k views
how do wild character % work in makefile rules
I have a makefile.
I need to build a set of targets under C:/bin/ from the source files under src1 and src2.
let them be required in the order say
${DEST_DIR}/a.o ${DEST_DIR}/b.o ${DEST_DIR}/c.o ...


