viraj
viraj

Reputation: 1814

Convert console/empty project to a Win32 project

I originally started a project in Visual C++ 2010, which was an empty/Blank project. How do I convert this to a Win32 project so that there is no console ?

Upvotes: 1

Views: 5250

Answers (1)

Ben Voigt
Ben Voigt

Reputation: 283644

You're looking for the /SUBSYSTEM setting under linker options.

enter image description here

Be sure to get both the Debug and Release configurations (or, leave the console enabled for Debug builds and send some useful information there)

Upvotes: 5

Related Questions