I have made a custom library in qooxdoo for reuse in another qooxdoo applications. I followed the instructions here: http://manual.qooxdoo.org/3.5/pages/development/library_custom.html
and it works, in that it finds the classes and I can use them in my new code. However, some of the classes are gui elements which themselves references resources (images) in the libary. These are marked:
@asset(path/to/resource)
However, when I use the generator, the source generation does not pull these resources into the new application. However, when I use build, it does, and the resource directory for build looks like:
resource
|--->application
|--->library
So my question is, how can I make the generator copy the library resources into the source/resource directory as part of a source build so that the source application will have all the relevant resources?