It depends on how you define your projects... generally you'd refer to
sub-project with the colon notation.

project("A:B:C")  # This is project A -> sub-project B -> sub-project C

since it's shorter, although you can also use the longer form:

project("A").project("B").project("C")

alex


On Sun, Mar 15, 2009 at 12:59 PM, Sakari Isoniemi <[email protected]
> wrote:

> How to call a projects task, that is in subdirectory ?
>
> For ex. the current directory is A, where is a buildfile.
>
> How from this buildfile is called project/task, which buildfile is
> in directory A/B/C ?
>
> The notation
>     compile.with projects('B\C\projX')
>
> won't work
>

Reply via email to