How to create more than one executable files on VC++

  • Thread starter Thread starter m_muse
  • Start date Start date
M

m_muse

Hi,

I want to know how can I create 2 executable files with one workspace
on VC++. I want to create two executable files just by one active
project.

Thanks in advance
 
You can use the Configuration Manager button in the Property Pages dialog
for your project in order to create a new solution configuration or a new
project configuration, you can group multiple project configurations inside
a solution configuration.

Then you can set the new created solution configuration as the active one,
so when you compile all the project configurations inside the solution
configruation will be compiled.

Another option is to use batch build, Build->Batch Build... menu, which is
only usefull if you rarely need to compile multiple project configurations
at the same time.

--
Un saludo
Rodrigo Corral González [MVP]

FAQ de microsoft.public.es.vc++
http://rcorral.mvps.org
 
Back
Top