Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: vongodric on August 21, 2006, 10:06:44 am

Title: What is "virtual target"
Post by: vongodric on August 21, 2006, 10:06:44 am
Sry if this a dumb question, but what are they?
Title: Re: What is "virtual target"
Post by: Alca Isilon 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).

Title: Re: What is "virtual target"
Post by: vongodric on August 21, 2006, 12:23:25 pm
ah I see. useful.