- 
    Bug 
- 
    Resolution: Done
- 
    P2: Important 
- 
    0.3
- 
    None
- 
    OS X 10.8.2
My project file:
import qbs.base 1.0 import qbs.probes as Probes Application { ... Probes.PathProbe { id: sparkle names: "Sparkle.framework" platformPaths: [ "~/Library/Frameworks", "/usr/local/lib", "/Library/Frameworks", "/System/Library/Frameworks" ] } Properties { condition: qbs.targetOS === "mac" && sparkle.found cpp.frameworkPaths: sparkle.path cpp.weakFrameworks: [ "Sparkle" ] cpp.defines: [ "HAVE_SPARKLE" ] } }
This used to work fine, but I'm now getting "ERROR: ReferenceError: Can't find variable: sparkle". Another "slash the loader's Gordian Knot" regression.