Details
-
Bug
-
Resolution: Done
-
P2: Important
-
0.3
-
None
-
- QBS from Trunk (ded9902af9df3fc15fe7de511302af2e1001f48c)
- Qt Creator 2.7.0
- Windows 7.
Description
Have a simple project consisting of one master.qbs and a test.qbs two directory levels below.
While I'm able to open the .qps files I'm not able to open the main.c which is shown on the left.
The file exists and the project compiles fine.
Attached a screenshot of the error message
— master.qbs —
import qbs.base 1.0
Project {
references: [
"test/test1/child.qbs"
]
}
— test/test1/child.qbs
import qbs.base 1.0
Application {
name: "Test"
files: ["main.c"]
Depends
}