Details
-
Bug
-
Resolution: Done
-
P2: Important
-
1.0.0
-
None
-
0f76f56e9f4f11b118c10cfcad1f21bf2e80f759 a6e78bdebcacbe823114ffa03999c5bf1c28242f 91a320551cae7925308d84395a52dfdd617b4110
Description
JavaScript files need an include statement/function to avoid the following pattern:
---stuff.js--- function doStuff() { FileInfo.fileName(someAbsolutePath); } ---myapp.qbs--- import qbs.fileinfo as FileInfo // needed for stuff.js import "stuff.js" as Stuff