I had to do my homework with c programming in codelite. Just like codeBlock and Dev-C++ which give user to run multiple console program in the same folder, however, when I run it on codelite it fail.
I have create different workspace folder or even different project.But when I try to build it, only the first c file get to build but not later created c file.
May anyone please help me on this issues?I just want to rum multiple program in codelite just like code block.
Hitting F7
, builds the active project (the project with a bold text in the workspace tree view).
To change the active project:
Make active
To build all the projects in a single click (Default key: F7
):
Build Order
F7
OR, build the entire workspace (Ctrl-Shift-B
):
Build -> Build Workspace
(default key bindings: Ctrl-Shift-B
)To execute a project (default key binding: Ctrl-F5
):
Ctrl-F5
NOTE:
All keybindings can be changed from Settings -> Keyboard shortcuts
HTH, Eran