Questions tagged [target]

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

1932 questions
760
votes
24 answers

Can I create links with 'target="_blank"' in Markdown?

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.
ma11hew28
  • 121,420
  • 116
  • 450
  • 651
277
votes
6 answers

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 this target's Info.plist file…
nevan king
  • 112,709
  • 45
  • 203
  • 241
212
votes
4 answers

How to set child process' environment variable in Makefile

I would like to change this Makefile: SHELL := /bin/bash PATH := node_modules/.bin:$(PATH) boot: @supervisor \ --harmony \ --watch etc,lib \ --extensions js,json \ --no-restart-on error \ …
bodokaiser
  • 15,122
  • 22
  • 97
  • 140
170
votes
4 answers

How do I specify multiple targets in my podfile for my Xcode project?

I'm using CocoaPods with my Xcode 4 project and I have three targets for my project (the default, one for building a lite version and one for building a demo version). All the targets use the same libraries, but CocoaPods is only adding the static…
Austin
  • 4,638
  • 7
  • 41
  • 60
150
votes
20 answers

What does this symbol mean in IntelliJ? (red circle on bottom-left corner of file name, with 'J' in it)

Under the target folder in IntelliJ for a Java project I created, I have a few java source files in the package. Beside each file the 'J' icon has a red circle with a line through it. What does that mean? How do I fix it?
TERACytE
  • 7,553
  • 13
  • 75
  • 111
108
votes
16 answers

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 simulator and devices? My "Targeted Device Family"…
sol
  • 6,402
  • 13
  • 47
  • 57
108
votes
2 answers

If conditions in a Makefile, inside a target

I'm trying to setup a Makefile that will search and copy some files (if-else condition) and I can't figure out what exactly is wrong with it? (thou I'm pretty sure it's because a combination of spaces/tabs written in the wrong place). Can I get some…
alexandernst
  • 14,352
  • 22
  • 97
  • 197
84
votes
13 answers

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 must build against the newest SDK (2.2) To do this in…
Donal Rafferty
  • 19,707
  • 39
  • 114
  • 191
83
votes
2 answers

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 and elements in its element (in the build.xml file). I keep getting "package…
Daryl Spitzer
  • 143,156
  • 76
  • 154
  • 173
82
votes
7 answers

Objective C to Swift header file with multiple targets

I'm successfully calling my Swift classes from Objective C (for target 'MyApp') via the import statement: #import "MyApp-Swift.h" I've now created a new target called "MyAppLite" When I compile the new target, I get errors because "MyApp-Swift.h"…
Fittoburst
  • 2,215
  • 2
  • 21
  • 33
74
votes
1 answer

Difference between target google APIs and target android

I'm developing android with SDK 2.3.3 using Eclipse IDE. As you all know to run my app, I should generate virtual device. From 'create new AVD' window, I can see many targets. There are 2 targets for API level 10 such as 'android 2.3.3' and Google…
allbory
  • 743
  • 1
  • 5
  • 5
73
votes
8 answers

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?
Miles Henrichs
  • 2,300
  • 3
  • 20
  • 23
71
votes
10 answers

failed to find target with hash string 'android-22'

I have updated android studio with latest version and then after googling I also updated Android SDK with API 18 but still it gives the same error.
Hardik Pithva
  • 1,729
  • 1
  • 15
  • 31
71
votes
11 answers

How can I change a project's location pointer in Eclipse?

A project has moved to a different location, so Eclipse won't open the project. You'll immediately think about simply changing the pointer to the location, but in Eclipse they try to make this impossible for some reason. You cannot change the…
Redsandro
  • 11,060
  • 13
  • 76
  • 106
70
votes
8 answers

jQuery: go to URL with target="_blank"

I am using this bit of jQuery code to get href of the link: var url = $(this).attr('href'); -- and this bit of code to go to that href: window.location = url; Everything is just the way I want it, except the new page opens in the same window as…
Dimitri Vorontzov
  • 7,834
  • 12
  • 48
  • 76
1
2 3
99 100