Tagged Questions
The targets tag has no wiki summary.
37
votes
7answers
7k views
How do I manage building a Lite vs Paid version of an iPhone app?
I'm starting to get to the point where I want to consider building a
lite version of my iPhone app. I've found a few things on the web that talk
about the process a bit, namely:
...
17
votes
3answers
4k views
Adding files to seperate targets in Xcode 4
Since upgrading to xcode 4, I can't find where to specify what Target a resource belongs to. Previously, I selected the file and hit command+i, but this now seems to run the program, rather than bring ...
17
votes
6answers
5k views
Microsoft.WebApplication.targets was not found, on the build server. What's your solution?
Trying to build my project on the build server gives me the following error:
Microsoft (R) Build Engine Version 4.0.30319.1
error MSB4019: The imported project "C:\Program Files ...
6
votes
3answers
3k views
target-action uicontrolevents
I must be missing something obvious here but ...
UIControl has a method
- (void)addTarget:(id)target action:(SEL)action forControlEvents: (UIControlEvents)controlEvents
which lets you add an ...
4
votes
1answer
1k views
How do you get the list of targets in a makefile?
I've used rake a bit (a Ruby make program), and it has an option to get a list of all the available targets, eg
> rake --tasks
rake db:charset # retrieve the charset for your data...
rake ...
3
votes
1answer
69 views
How to build iPhone and iPad targets with the same filename in Xcode 4?
Our company created an iOS app that has an iPhone version and an iPad version. The app is called "SaveMyPlace". We wanted to call the iPad version "SaveMyPlaceHD", but that name was too long, and got ...
3
votes
1answer
214 views
How to add a build phase in a project template?
I'm trying to add a Run Script Build Phase to a target in a custom Project Template for Xcode 4.
Does anyone have any examples, tutorials, or tips on how to do this?
I'm assuming that this will be ...
2
votes
1answer
183 views
Parallelism in MSBuild
Suppose I have two targets that are time-consuming and I want to execute them in parallel. Let's say one target runs unit tests and the other generates some documentation. I tried this approach:
...
2
votes
1answer
210 views
Xcode targets — programmatic creation
I have an iOS project in which there will be >100 targets created from the same code base. The targets have many similar characteristics, but different info.plist, Default.png files, etc...
I'm ...
2
votes
2answers
268 views
Why does 'clean' magically fix mysterious bugs in my app?
If I ever have a problem that is not showing up as a warning, but makes my app crash on runtime, sometimes I'll build->clean and often it this unkown bug disappears. This happens mostly when I import ...
2
votes
1answer
833 views
How to invoke the same msbuild target twice?
I have the following msbuild script:
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
DefaultTargets="All">
...
1
vote
2answers
20 views
Xcode4 target labelled as missing, but cannot delete it
I want to delete this red-marked target, but am unable to.
The "minus" button in the dialogue remains greyed-out, it doesn't respond to backspace or delete keys and right-clicking just brings up ...
1
vote
1answer
48 views
Creating an application with multiple targets in Windows Phone 7
Is there any way to create a project/application which will have multiple targets.Its same as how we create multiple targets for an iPhone application in XCode.Basically I have an app which has to be ...
1
vote
0answers
63 views
iphone: cannot link gh-unit target to app target, cannot execute binary file
this is a question that tries to accomplish what this tutorial offers with a GHUnit Test Target. Its about linking a test target to the source target so that you dont have to manually include the ...
1
vote
1answer
85 views
Getting lots of warnings when building with targets in Visual Studio 2010
I'm trying to build some code but getting lots of warnings in target files, stuff like this:
Warning 12 The element 'ItemGroup' in namespace
...
1
vote
1answer
54 views
putpkt: Error and testing Core-Data Lightweight migration
I have an xcode project that has 4 targets (2 apps, 1 iPhone and 1 iPad version for each). I have recently implemented Core Data Lightweight Migration.
I am currently only testing two of the apps, ...
1
vote
4answers
264 views
What platform can I compile binaries for, using LLVM (Low Level Virtual Machine)?
I am interested in using the LLVM's Clang compiler. LLVM claims to be cross-platform however it is not clear which platforms can be targeted. I have done quite a lot of Googling on this but there ...
1
vote
2answers
69 views
Avoid duplicating GNU Make rules
I've been writing a Makefile that performs some dependency generation and I've found myself having to duplicate rules because the (legacy) codebase contains a mixture of .cpp and .cc files. It seems a ...
1
vote
1answer
109 views
nlog Can't load custom target from referenced assembly
I've created the following custom target:
[Target("MyTarget")
public class MyTarget : TargetWithLayout
This class is defined within its own assembly, lets say MyTargets.dll (not real name). The ...
1
vote
1answer
88 views
Nested Aggregate Targets in Xcode don't seem to pass settings properly
I have a project with one main Cocoa application, a bunch of plugins, and a couple of helper apps. The helper apps have their own targets, and as I want the app build-able without the plugins, the ...
1
vote
2answers
229 views
How to get multiple targets into one binary for app store submission?
I have split my iPhone app into two targets one for the ipad and one for the iphone. When I upload to the appstore I can only have one binary. But I have two targets?
I think I am missing a step. ...
1
vote
1answer
488 views
XCode: Multiple targets in same bundle
I have an XCode project with a Cocoa application target and a shell tool target. These projects share a Core Data persistant store and thus I am hoping to have both projects use the same *.mom file.
...
1
vote
2answers
185 views
iPhone - Branding & multiple targets?
I am trying to create 2 versions of the exact same app with 2 different branding?
So i created 2 folders in my project
Resources -> Folder1
Resources -> Folder2
I added Folder1 to target 1, ...
1
vote
2answers
471 views
MsBuild: Get current directory of targets
I have a msbuild target and it has a Import tag like this:
<Import Project="$(MSBuildExtensionsPath)\Company\Company.LifeCycle.targets" />
In contents of Company.LifeCycle.targets file, how ...
1
vote
1answer
1k views
Xcode multiple targets — #ifdef's running over
I have an Xcode project with seven targets, corresponding to seven iPhone apps. That number may increase. A lot of the targets use a lot of the same classes.
I have reproduced portions of the app ...
1
vote
3answers
1k views
ant common targets are not recognized by eclipse
I have added all common targets like (init,clean,getivy etc) in ./common/common.xml and added import file="${basedir}/common/common.xml" in build.xml.
When i build the project, its working fine. ...
1
vote
2answers
50 views
Targetting silverlight v2
Now that I have installed Silverlight 3, I seem unable to build a Silverlight application for Silverlight 2.
I have set my objects minRuntimeVersion to 2.0.31005.0, however users who do not have ...
1
vote
4answers
379 views
Where should I store common targets for team builds?
I am trying to set up a common.targets file with some common msbuild targets I want to use in my team builds and therefore import into my TFSBuild.proj files. I am wondering what is the best way to ...
0
votes
1answer
14 views
xCode - How to add 2 Default.png files in a single project?
I have 2 different target in my project (full & light).
I also have different Default.png files (one for the full version and one for the light one).
Is it posible to include both files in the ...
0
votes
1answer
78 views
Augmented Reality (Android): loading trackable dynamically
I am looking for a (marker based) framework (SDK) that allows you, for example, the trackables update via Web-services. Without traditionally recompiling and installing a new apk.
Maybe someone has ...
0
votes
2answers
50 views
Select “Android X.X” or “Google APIs” in new project
I think it's basically the same, but what build target should I select? Or is there really difference between them?
For example the "Android 2.2" or "Google APIs" for the same Platform and API Level?
...
0
votes
0answers
21 views
Recreating XCode Targets
So I accidentally deleted my target file (I deleted the wrong thing) and when I tried to roll back to a snapshot none of them were there. I had been keeping a pretty good CM by using the snapshots, ...
0
votes
2answers
186 views
How do I define preprocessor macros in Xcode 4?
I have two targets set up for my app (a lite version and a pro version) and I want to integrate some subtle differences in the code for each of them (e.g. the pro version will not show any iAd ...
0
votes
0answers
40 views
info.plist for multiple targets
I am developing an app which has 2 targets. When I add a second target, info.plist file for the 2nd target is not getting generated. I created a plist manually. But I could not map it for the 2nd ...
0
votes
0answers
79 views
CMake cuda preprocessor defines are the same for all targets
Using CMake 2.8.5 and the following CMakeLists.txt
find_cuda_helper_libs(cusparse)
set(CUDA_CUSPARSE_LIBRARIES ${CUDA_cusparse_LIBRARY})
set (CUDA_NVCC_FLAGS "-arch=sm_11")
include_directories ...
0
votes
1answer
54 views
Multiple targets for an app ipad
I am developing an app for ipad which needs to have 2 targets. How to implement multiple targets using xcode?
0
votes
1answer
29 views
Wrong placing of a linked framework in project structure
Hi,
I've a maybe really simple question to you. According to Apple's tip how to link to a framework, I tried to add some frameworks to my project.
All works fine, BUT the frameworks are added at ...
0
votes
0answers
40 views
Reflection - How to add custom information by an attribute into Assembly PROGRAMMATICALLY?
I want to store some extra information into my Assembly.
The traditional way is sequentially : Extend an attribute which targets to Assembly => Manually write down onto AssemblyInfo with recent ...
0
votes
3answers
5k views
Redirecting new tab on button click.(Response.Redirect) in asp.net C#
I'm trying to open a page in new tab/window on button click.I tried in the google got this code but its not working.
Can anybody help me with this?
<asp:Button ID="btn" runat="Server" ...
0
votes
1answer
74 views
Make ItemGroup created in MSBuild target available to calling targets
If I have the following targets in an MSBuild file:
<Target Name="Temp">
<CallTarget Targets="CreateTestList" />
<Message Text="TestList: -- @(TestAssembly) -- " />
...
0
votes
0answers
50 views
Xcode 3 - Target Duplication Failure
I have a Mac OS X project, using Xcode 3.2.5, 10.6.6.
The project contains 3 targets, each of which successfully compiles and builds a variant of my (ObjC2/C++) Mac app.
Problem chain:
Select any ...
0
votes
2answers
383 views
XCode - Iphone project cannot run on iphone simulator?
Something happened to my XCode Project.
On top left side of XCode 4 where you can specify what device/simulator you want to run your app on it does not show any iphone/ipad related target. It shows ...
0
votes
1answer
196 views
msbuild reference resolution
I've been doing some work recently that analyzes relationships between various projects in source control. So far I've been using PowerShell and XPath through the Select-Xml cmdlet to process our ...
0
votes
1answer
368 views
Nested Movie Clip Timeline wont work (Depth/targets) in Flash AS2
HI
my code works fine when all mc are placed on the main time-line(stage) However when I import them into a single Movie Clip called Container_Mc the code stops working. Im sure it has to do with the ...
0
votes
1answer
152 views
Stuck Building for iPhone Simulator
I recently took my plain-vanilla C++ project in XCode, and added a new iPhone target. Now, however, I can't build my old C++ target for the Mac anymore; it's stuck on "iPhone Simulator." When I ...
0
votes
0answers
26 views
How can I target all movie clips that are dynamically put on the stage?
I am having trouble with TransformManager. I can specify the names and instances of movieclips that i want to manipulate in the as doc but if i try to add a child to the stage with the same name it ...
0
votes
1answer
307 views
iphone/ipad - two different targets, conflicts in view controllers
So I have created a new iPad target in Xcode for a project that originally was iPhone only. As Apple recommends, I have also created iPad-specific view controllers, and copied and pasted much of the ...
0
votes
1answer
110 views
Programming app for multiple targets?
I'm programming an app that will have a free version. I have added another target to my app (MyApp Free) and am wondering how I can now add the proper #ifdef declarations to my code. If anyone knows ...
0
votes
2answers
111 views
xcode project with apps in app
I am somehow new to objective-c and iOS.
My question is as follows:
I have created 5 iphone apps until now. What I need now it to create a new project that will include all other applications in it. ...
0
votes
1answer
86 views
xib file shows in wrong target
I am new to using multiple targets in a xcode project and have hit a snag that I can't find an answer for.
I have a project with two targets. One target does not have a user interface and the second ...