forked from qt-creator/qt-creator
10 lines
231 B
QML
10 lines
231 B
QML
|
|
import qbs
|
||
|
|
import "../autotest.qbs" as Autotest
|
||
|
|
|
||
|
|
Autotest {
|
||
|
|
name: "StringUtils autotest"
|
||
|
|
Depends { name: "Utils" }
|
||
|
|
Depends { name: "Qt.widgets" } // TODO: Remove when qbs bug is fixed
|
||
|
|
files: "tst_stringutils.cpp"
|
||
|
|
}
|