Page 1 of 1

How to hide "time elapsed" in console applications?

Posted: Sun Jun 24, 2018 1:15 am
by notgay
Everytime I run a console application, it shows me the time elapsed. I have searched everywhere for the option to hide it but to no avail. Is there an option to hide it?

Re: How to hide "time elapsed" in console applications?

Posted: Sun Jun 24, 2018 1:37 am
by eranif
Assuming you are using Windows, you cant.
CodeLite uses a wrapper executable to enable the "pause-when-execution-ends" feature.
You can disable this, but then your console will be "gone" when the execution ends (so incase you print something to the console, you wont be able to read it

To disable this feature, project settings->pause when execution ends

Re: How to hide "time elapsed" in console applications?

Posted: Sun Jun 24, 2018 10:08 am
by notgay
eranif wrote:Assuming you are using Windows, you cant.
CodeLite uses a wrapper executable to enable the "pause-when-execution-ends" feature.
You can disable this, but then your console will be "gone" when the execution ends (so incase you print something to the console, you wont be able to read it

To disable this feature, project settings->pause when execution ends
Thank you man, it works :D