This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Arranging File Groups in Directories

Hi,
I'm a newbie to 8051 Keil's IDE.
I would like to arrange several file groups, which have mutual meaning, under a sub-directory. This sub-directory will then be included directly under the project's target. The sub-directory contains only file groups, that is, no files are directly added under it. Let me explain:
Instead of having the following:
[target_name]
-->> [File_Group_1]
-->> [File_Group_2]
-->> [File_Group_3]
-->> [File_Group_4]
I would like to have:
[target_name]
-->> [Dir_1]
-->> -->> [File_Group_1]
-->> -->> [File_Group_2]
-->> [Dir_2]
-->> -->> [File_Group_3]
-->> -->> [File_Group_4]

I haven't found a way to do that. Any help will be appreciated.
Thanks !
Tomer

Parents
  • Hi Reinhard,
    I'll rephrase my question:
    Is there a way to create a group, which only contains file groups (and no sources of its own)? In the following example, look at [tasks]:

    [target]
    |----->> [tasks]
    ..|----------->> [task1]
    ....|----------------->> task1.c
    ..|----------->> [task2]
    ....|----------------->> task2.c

    [target] is the project's taget name.
    [task1] and [task2] are file groups containing source files.
    [tasks] is a group contining only the above file groups.
    My problem is that The uVision doesn't allow to create [task1] and [task2] under [tasks].

Reply
  • Hi Reinhard,
    I'll rephrase my question:
    Is there a way to create a group, which only contains file groups (and no sources of its own)? In the following example, look at [tasks]:

    [target]
    |----->> [tasks]
    ..|----------->> [task1]
    ....|----------------->> task1.c
    ..|----------->> [task2]
    ....|----------------->> task2.c

    [target] is the project's taget name.
    [task1] and [task2] are file groups containing source files.
    [tasks] is a group contining only the above file groups.
    My problem is that The uVision doesn't allow to create [task1] and [task2] under [tasks].

Children