I can't find clear example of building tests with qbs. I tried like this
import qbs
CppApplication {
consoleApplication: true
files: [ "TestTask.h", "TestTask.cpp" ]
Depends { name: "Qt"; submodules: [ "core", "testlib" ] }
}
TestTask is a QObject subclass. But compiler says that I missed main() function.
For compile test your need main.cpp. For example:
Your must also add main.cpp in files (qbs file).