Page 1 of 1

Naming of .exe files

Posted: Sat Jun 06, 2009 5:30 pm
by Tigers!
I have a project called ScanImagesCleanUp. I have a collection of .cpp files AU_PickList-n where n is the number of the file. Currently I can only have only 1 file under the src folder at any given time. Is it possible to have >1 file without a build error tellinge I have > 1 main?
When I build the current file it builds the .exe as ScanImagesCleanUp.exe rather than AU_PickList-n.exe. This means I lose any previous .exe versions. Is it possible to have the .exe follow the .cpp name rather than the project name?

Re: Naming of .exe files

Posted: Sun Jun 07, 2009 10:01 pm
by eranif
No and this is not a codelite problem.

You must set up a project for each application.
You may have as many files as you want in a project, but only one active 'main' function. This is how the compiler/linker works.

Eran