Edward Jeckyll
Edward Jeckyll

Reputation: 55

Stop Eclipse Command Line Pop Ups

I am writing a small FLTK (GUI) program on windows 7 using Eclipse Kepler. My "int main()" function is not even set to receive any command line arguments, yet every time I build the program exe and run it a command line pops up being the GUI interface.

Does anyone know how to suppress this? I do not need a console display for any input or output etc. as this is all controlled via the GUI interface.

Thanks.

Upvotes: 0

Views: 291

Answers (1)

osechet
osechet

Reputation: 466

It has nothing to see with eclipse. It's a standard behaviour of c++ applications on Windows. Look for console on this page. You will find how to disable it.

Upvotes: 1

Related Questions