Details
Description
For instance:
import qbs Project { CppApplication { name: "app" files: "main.cpp" } Product { Depends { name: "app" } Group { name: "files to install" files: ["file1.txt", "file2.txt"] qbs.install: true qbs.installDir: "blubb" } } }
file1.txt and file2.txt will not get installed. If the dependency to "app" is removed, things work as expected.