Hello, I am using qbs to install a set of static files from a directory, but I found that hidden files (the file begin with ".") was not copied to target path. How can I force qbs to include hidden files?
That is my qbs
import qbs
Product {
Group {
name: "all"
files: "*"
prefix: "static/"
qbs.install: true
qbs.installSourceBase: "."
qbs.installRoot: "/tmp"
}
}
_______________________________________________ Qbs mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/qbs
