Page 1 of 1

codelite does not show the right directory structure while i

Posted: Mon Aug 16, 2010 12:03 am
by ebtest
I have started using codelite as my c++ development IDE on Linux. I wanted to compile one of the makefile based project that I have. The directory structure of the project source code is this:

Code: Select all

src
  dirA
     dirC
        c.cpp
     a.cpp 
  dirB
      b.cpp
  Makefile
Now when I do import files from directory, I have to select each check box for each directory (they are not recursive) so that they are imported. Even when they are imported, codelite shows the dir structure in this way

Code: Select all

 dirA
        a.cpp   
  dirC
        c.cpp
  dirB
        b.cpp
i.e., even though dirC is under dirA, it does not show like that, is it the right behavior in codelite

Re: codelite does not show the right directory structure while i

Posted: Mon Aug 16, 2010 8:31 am
by eranif
ebtest wrote:i.e., even though dirC is under dirA, it does not show like that, is it the right behavior in codelite
Yes.

The "Workspace View" has nothing to do with the actual file structure - its just a way codelite uses to display your files

Eran