Details
Description
Installing images using a Group with qbs.install works:
// Data Group { files: "images/*" qbs.install: true qbs.installDir: "data" }
Now, if I use a fileTagsFilter based on the fileTags of another group instead of files, the images are not installed:
// Images Group { files: "images/*" fileTags: "img" } // Data Group { fileTagsFilter: "img" //fileTagsFilter: ["img", "audio", "txt"] qbs.install: true qbs.installDir: "data" }
Using the "application" fileTags works, though:
// Bin Group { fileTagsFilter: "application" qbs.install: true qbs.installDir: "bin" }
Looks like a bug, but might be a beginner error, too
Note: using GIT HEAD 6f6606b798b2e9c3911b2a0794835089ab100cb8
Attachments
Issue Links
- relates to
-
QBS-229 Use reasonable defaults for destinationDirectory / qbs.installDir
- Closed