codelite does not show the right directory structure while i

General questions regarding the usage of CodeLite
ebtest
CodeLite Curious
Posts: 1
Joined: Sun Aug 15, 2010 11:51 pm
Genuine User: Yes
IDE Question: c++
Contact:

codelite does not show the right directory structure while i

Post 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
User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

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

Post 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
Make sure you have read the HOW TO POST thread
Post Reply