Reputation: 169
I would like to separate various source types into per-module areas without either:
So thus for instance, what I really want to do are things like:
main {
assets {
srcDir 'modules/*/assets'
}
}
and have modules/A/assets
, modules/B/assets
, etc, automatically added to the list of assets directories. But that does not work, unfortunately, nor is it clear how to produce/iterate a set of directories from a wildcard pattern.
Upvotes: 3
Views: 336