codelite
codelite copied to clipboard
[Question] Is it possible to compile in a single project multiple .c/.cpp files simultaneously with Codelite Makefile Generator?
I have the following file dir structure: src/main.c src/foo.c src/foo.h
I need to compile them like gcc main.c foo.c. But it currently compiles like
gcc main.c
gcc foo.c
Looking in the project properties I cannot see a way to do this.

What's the difference between compiling:
gcc main.c
gcc foo.c
and
gcc main.c foo.c
?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs (within 5 days). Thank you for your contributions.