SFML community forums

Help => General => Topic started by: wizh on June 02, 2013, 09:22:01 pm

Title: How do I see the console when I run my application?
Post by: wizh on June 02, 2013, 09:22:01 pm
How do I see the console when I run my program?

I want to be able to read the
std::cout
I have. Currently it only opens the window for the program... All tutorials I see have this.

Thanks in advance :)
Title: Re: How do I see the console when I run my application?
Post by: Nexus on June 02, 2013, 09:31:32 pm
If you use Visual Studio, make sure you have the subsystem (in project options) set to console, not window. If you create an empty project, this should be the default.
Title: Re: How do I see the console when I run my application?
Post by: wizh on June 02, 2013, 09:36:24 pm
If you use Visual Studio, make sure you have the subsystem (in project options) set to console, not window. If you create an empty project, this should be the default.

Excatly what I needed - thanks!

Windows was set as default.