by eranif on Sun Mar 07, 2010 8:11 am
You could try and run 'CppCheck'.
codelite has a plugin for it, and it should work out of the box.
Right click on your workspace / project and select -> 'CppCheck -> Run CppCheck'
This will perform a static code analyze of your workspace/project
Also, using the 'External Tools' plugin, you may consider the macros:
$(ProjectFiles) and $(ProjectFilesAbs) - the first one expands to a relative path and the later to absolute path
Those 2 macro will expand to a full space delimited list of the project files (the active project)
Eran