Tagged Questions

In a makefile, targets are associated with a series of commands to execute when an action is requested.

learn more… | top users | synonyms

32
votes
11answers
22k views

Xcode 4 - The selected run destination is not valid for this action

I have opened a project that has always been iphone/ipad. I can't build it now because for some reason my only "Scheme" option is "MyApp My Mac 64-bit". How can I get this set back to iphone/ipad ...
16
votes
3answers
3k 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 ...
15
votes
3answers
5k views

Linker Error in Xcode 4.2 Developer Preview

d /Users/yariksmirnov/Library/Developer/Xcode/DerivedData/Goozzy-cugjuvvsrzjqwvfiicxtykbqagux/Build/Products/Debug-iphonesimulator/Goozzy.app/Goozzy normal i386 cd ...
13
votes
1answer
3k views

Building for 10.5 in Xcode 3.2 (on Snow Leopard) error

I just created a new Cocoa project on XCode 3.2. I'm running it in Snow Leopard. When I build it for 10.6 it works fine but if I change the active SDK to 10.5 I get this error: cannot find protocol ...
11
votes
6answers
255 views

Html Target Attribute not supported

I was just on w3Schools looking at target and found that it is no longer supported by any of the major browsers. A brief google search did not reveal the reason for this? Should I avoid the use of ...
11
votes
7answers
5k 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 ...
9
votes
3answers
2k views

Is it alright use to target=_blank in HTML5?

I recall reading somewhere that in HTML5 it was no longer okay to use target="_blank" in HTML5, but I can't find it now. Is it alright to continue to use target="_blank"? I know it's generally ...
9
votes
3answers
3k views

MSBuild target _CopyWebApplication does not copy all necessary files to the bin folder

Elsewhere on the Web, you can find recommendations on using something like this to simulate the Publish feature in the VS 2005-2008 IDE from a command-line (I hope I did not goof up the syntax!): ...
8
votes
3answers
5k 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 ...
8
votes
1answer
587 views

Is it possible to have Ant print out the classpath for a particular target? If so, how?

I'm trying to get a target to build that has quite a long list of <pathelement location="${xxx}"/> and <path refid="foo.class.path"/> elements in its <path id="bar.class.path"> ...
8
votes
3answers
2k views

Objective-c asynchronous communication: target/action or delegation pattern?

I'm dealing with some asynchronous communication situations (Event-driven XML parsing, NSURLConnection response processing, etc.). I'll try to briefly explain my problem: In my current scenario, ...
8
votes
4answers
1k views

iPhone: one nib, different assets. Bundles?

I have an iPhone application that comes in differently skinned flavors, with different art assets and sounds, but all the same code. I've got things set up with multiple targets, but the problem I'm ...
7
votes
2answers
2k views

Xcode: project settings vs. target settings

I'm creating a static lib on Mac OS X for one of our customers, as well as a small cmd line app to test the static lib. The cmd line project has 2 extra library search paths, which meant I was linking ...
6
votes
5answers
360 views

Choosing the right API Level for my android application

I currently have a application targeted at android 2.3 (api level 10), but went thinking that probably people using android 2.1/2.2 or older won't even be able to see the application in the market. So ...
6
votes
1answer
3k views

android honeycomb menu button target

I am trying to get my app to be backward compatible so i need to show the menu button since we used the menu button in our app on previous versions. So I was reading and it says that if your target ...
6
votes
4answers
2k views

markdown target=“_blank”

Is there a way to create a link in markdown that opens in a new window? If not, what syntax do you recommend to do this. I'll add it to the markdown compiler I use. I think it should be an option.
6
votes
3answers
355 views

Target iPhone application by model (e.g. 3G vs 3GS)

Much like the required device capabilities on the info.plist file, is it possible to configure an application such that it will only be available on some device models? I know how to target it by ...
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 ...
6
votes
3answers
1k views

Can you create a “superset” target in Xcode?

For the purposes of unit testing I'd like to create an iPhone project target in Xcode that includes all of the release application files, plus some additional files containing code useful for UI unit ...
5
votes
3answers
1k views

NetBeans+Android: after update i have error: build.xml:77: Android Target is not set

Today Netbeans found new update of android plugin. and i installed it. After that, all my project had "broken platform" instead of Android.2.3. I after i choose platform again ,in project properties, ...
5
votes
3answers
951 views

Difference between e.target and e.currentTarget

I dont understand the difference, they both seems the same but... I guess they are not. Any examples of when to use one or another would be appreciated. Thx.
5
votes
1answer
998 views

Difference between target google APIs and target android 2.3.3

Now I'm developing android with SDK 2.3.3 with Eclipse. As you know all to run my app, I should generate virtual device. From 'create new ADV' window, I can see many targets. There are 2 targets for ...
5
votes
2answers
1k views

Xcode - duplicate Target - new Target fails to build

using Xcode 3.2.5 on 10.6.6 (10J521) and now 10J537. I have an Xcode project containing 1 Target: "MyApp". It builds and runs successfully. As well as source and resource files, the Target contains ...
5
votes
11answers
3k views

Create a W3C validated anchor link with target=“_blank”

I have the following piece of HTML that creates a new window when clicked: <a href="/path/to/site" target="_blank">glide by the people</a> Problem is that it does not pass the W3C ...
5
votes
3answers
1k views

.NET - Target platform/processor at compile time

Is there a #define in C# that allows me to know, at compile time, if I'm compiling for x86 (Win32) or x64 (Win64)?
4
votes
2answers
206 views

Programming Languages Targeting Arduino/AVR

What programming languages or environments target Arduino or AVR besides the default C++ environment? PS: I'm using Mac OS 10.5.
4
votes
1answer
172 views

C++0x: Error with std::function::target and template arguments

I currently write on an event handler system in C++0x. The "handlers" for each event (there can be multiple handlers) are registered by passing any kind of function/method that can be stored in a ...
4
votes
1answer
157 views

NAnt: How to get target name that was specified on command line

From within my NAnt build script, I'm trying to find out the name of that target that was specified on the command line (or the default target if none was specified). I've been reviewing the ...
4
votes
1answer
863 views

Detect in Xcode iPhone project whether I'm building for simulator or device?

Is there any way I can conditionally compile in my app based upon whether I'm building for the simulator or the device? (My app hooks to an external server: if I'm running on the device, I want to ...
4
votes
2answers
146 views

How does one have developers on VS2008 target .net 2.0 (but not the service pack) to avoid runtime crashes?

So, I want to upgrade my development team to VS2008. As an enterprise, we haven't rolled out the 3.5 runtime yet. From some reading, it seems like installing VS2008 will automatically give you .net ...
4
votes
3answers
9k views

How to make links break out of iframe when you only control the iframe page (not the framed pages)?

I have a site that displays other sites through an iframe on certain pages. It does this in order to display a toolbar that is relevant to the reader (like Facebook and Owly does). However, when the ...
4
votes
2answers
1k views

XCode Different Resources For Different Targets

I am developing an iPhone app and there will be a Full as well as a Lite version of that app. In order get both bundles from the same source code and xcode project I added another target to the xcode ...
4
votes
3answers
3k views

Reading the target of a .lnk file in Python?

I'm trying to read the target file/directory of a shortcut (.lnk) file from Python. Is there a headache-free way to do it? The .lnk spec [PDF] is way over my head. I don't mind using Windows-only ...
3
votes
6answers
64 views

webdriver target=“_blank”

Page has image with hyperlink and that hyperlink has target="_blank" and every time i press that image loads new firefox and that hyperlink is redirected to that new firefox web and i lose all ...
3
votes
2answers
61 views

How to hide some phing targets from xml

i have about 25 phing targets, when i list them in the console. But 5 of them are just needed by other targets and i will never trigger them alone. is there a possibility to hide them? For example: ...
3
votes
1answer
47 views

What is the correct way to ensure read-only plists are copied to the application build directory?

I have an iPhone application that uses a set of plists to load the data. I found during development that I was getting very strange behaviour whereby XCode did not always read from the latest revision ...
3
votes
3answers
311 views

CSS - Indenting only the first line of text in a paragraph?

I have several paragraphs that I would like to indent, although only the first lines of these paragraphs. How would I target just the first lines using CSS or HTML? Thanks!
3
votes
2answers
3k views

Implementing Target lines, in SSRS column Charts

I have a column graph, that shows a trend of consumption over time, The y-axis being consumption and x-axis being time in month, I have to implement a target consumption. I implemented a target, by ...
3
votes
4answers
2k views

XHTML Strict 1.0 - target=“_blank” not valid?

I just validated my actual XHTML Strict 1.0 doc with the w3c validator service.. and it says that, <ul id="socialnetwork"> <li><a href="http://www.twitter.com" ...
3
votes
2answers
2k views

Calling method set as target on UIButton

If I have a UIButton which has a target set, is there a way to call this method without explicitly calling it? For example: [newViewController.button addTarget:self action:@selector(MyMethod) ...
3
votes
3answers
86 views

#includes in C files for processor specific implementations

I'm working on a 'C' code base that was written specifically for one type of embedded processor. I've written generic 'psuedo object-oriented' code for things like LEDs, GPIO lines and ADCs (using ...
3
votes
2answers
2k views

How to split Code for iOS 3.0 and iOS 3.2 so I can use MPMoviePlayerViewController if OS 3.2++

I have a video that I play. To use full screen in iOS 3.2 I use the MPMoviePlayerViewController (seems to only work with that Class). But if I want to build for iOS 3.0 I obviously get several errors, ...
3
votes
1answer
853 views

Cannot change the target CPU to x86 Or x64 in Visual Studio 2005

I am trying to build a website application and specify the target CPU as x86 instead of Any CPU. The only choices I have in Configuration Manager under the "Active solution platform:" drop-down list ...
3
votes
2answers
1k views

Change Makefile variable value

Is there a way to reassign Makefile variable value inside of the target body? What I am trying to do is to add some extra flags for debug compilation: %.erl: %.beam $(ERLC) $(ERLFLAGS) -o ebin ...
3
votes
2answers
1k views

Building Web Application project using MSBuild from command line on 64-bit: missing targets file

Building a solution containing a web application project using MSBuild from powershell like this: msbuild "/p:OutDir=$build_dir\" $solution_file Works fine for me on 32-bit, but on a 64-bit machine ...
3
votes
5answers
187 views

New Window or New Tab — Way to decide?

On a link, is there a way to specify whether the new _blank window is actually a new window or a new tab? Thanks
3
votes
3answers
756 views

Target architecture for Tiger-compiler

I am writing a Tiger compiler in F# and I have finally reached the point where I can no longer postpone the decision of a target architecture. This is my first compiler, but it will definitely not be ...
3
votes
9answers
353 views

Can a team function predictably and deliver (on time) without a project manager?

Or they (team members) need someone to keep pushing? Edit: The above line was supposed to be sarcastically funny. Sorry to throw you guys off. I am talking more in the lines of distributing that ...
2
votes
1answer
36 views

Clear/Remove all connections in a Xcode project

I'm a newbie to Xcode, Objective-C and iOS programming (fully comfortable in R however, so familiar with programming concepts). I'm working my way through building my first app using a couple of ...
2
votes
1answer
31 views

How to change the target directory of GCC compiler?

It always puts the .exe file into the same directory as the source file. I'm not about to use any IDEs, just the command line tool.

1 2 3 4 5 9