I am using compc in an ant to task to compile a theme swc. This theme swc depends on some asset swcs and in the defaults.css style sheet I refer to some of the classes in these asset swcs.
The linkage I use for the asset swcs is compiler.library-path but it seems that the referred to classes and not compiled into the theme swc.
I include my stylesheet using include-file and with defaults-css-url.
When I build my application that uses this theme swc I get a class not found error for the class in the asset swc.
The easy solution is of course to have my application depend on the asset swc but I don't wnat to do that. All of the assets that the theme requires should be included in the theme swc. I also don't want to bloat my theme swc by including all the classes in the asset swc by using compiler.include-libraries.
ant example code:
hope help for you