Page 1 of 1

[HELP] Make exe in project's directory

Posted: Fri May 11, 2018 8:07 pm
by Mishkafofer
I just starting with codelite and c.
Currently on GCC with codelite 12 with Windows 10.
When i build a project such as Hello World, i get the usual black screen with the printout but when i go to the project's directory i don't see exe file. I googled and understand that they are outputted to some kind default directory.
But i prefer each exe in it's project's directory. I am not sure where to change that.

Why codelite by default not making exe in project's directory? I presume that this is kind of convention.

Re: [HELP] Make exe in project's directory

Posted: Fri May 11, 2018 11:44 pm
by eranif
right click on the project->settings->general->output file

and set it to:

$(ProjectPath)/$(ProjectName).exe

Eran