Reputation: 1814
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
Reputation: 283644
You're looking for the /SUBSYSTEM
setting under linker options.
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