Author Topic: What is "virtual target"  (Read 3457 times)

vongodric

  • Guest
What is "virtual target"
« on: August 21, 2006, 10:06:44 am »
Sry if this a dumb question, but what are they?

Alca Isilon

  • Guest
Re: What is "virtual target"
« Reply #1 on: August 21, 2006, 11:57:38 am »
Those are buildtargets that don't refer directly to a specific output file. The targets "All" and "clean" are virtual build targets.

So in short they are a method of grouping some of the different buildtargets of your project into one buildtarget. (e.g. some GUI required buildtargets into virtual target GUI and console targets into CONSOLE).


vongodric

  • Guest
Re: What is "virtual target"
« Reply #2 on: August 21, 2006, 12:23:25 pm »
ah I see. useful.