Warning, /sdk/cutehmi/tools/tools.qbs is written in an unsupported language. File is not indexed.

0001 import qbs.File
0002 
0003 Project {
0004         references: toolsProbe.projectDirs
0005 
0006         /*
0007           This probe simply scans current directory for subdirectories and stores the results in projectDirs property.
0008           */
0009         Probe {
0010                 id: toolsProbe
0011 
0012                 property pathList projectDirs: []
0013 
0014                 configure: {
0015                         projectDirs = File.directoryEntries(path, File.Dirs | File.NoDotAndDotDot)
0016                 }
0017         }
0018 }