This question is very simple. Every time I build a console application and test run it inside UEStudio, the console output always shows the file name first, and then the content of the app. For example, say I am building Foo.exe which only has one line: std::cout << "Print Foo " << std::endl; (of course I also have #include <iostream> etc. ); when I run this app inside UEStudio, I get the following output:
Is there anyway to turn off the display of Foo.exe to print out in the console?
I know this is so simple that almost feel like stupid to ask, but I look and look and couldn't find the option to turn this off. Of course, if I run the app from my regular DOS prompt session via cmd, I would not see Foo.exe to print out.
I don't believe this can be done as in the default run configuration box under compile option this is the command line arguments the user must provide, this option cannot be left blank. But I ask the question anyway in case someone know how to turn off the displaying of the file name.
Thanks in advance.
Code: Select all
Foo.exe
"Print Foo"
Press any key to continue ...
I know this is so simple that almost feel like stupid to ask, but I look and look and couldn't find the option to turn this off. Of course, if I run the app from my regular DOS prompt session via cmd, I would not see Foo.exe to print out.
I don't believe this can be done as in the default run configuration box under compile option this is the command line arguments the user must provide, this option cannot be left blank. But I ask the question anyway in case someone know how to turn off the displaying of the file name.
Thanks in advance.