forked from qt-creator/qt-creator
Just like for QtcPlugin, QtcLibrary etc. Change-Id: I395f5863f31abba589864be3ad41ad7fc893787f Reviewed-by: Jake Petroules <jake.petroules@petroules.com>
15 lines
401 B
QML
15 lines
401 B
QML
import qbs
|
|
import QtcAutotest
|
|
|
|
QtcAutotest {
|
|
name: "QML persistenttrie autotest"
|
|
Depends { name: "QmlJS" }
|
|
Depends { name: "Qt.widgets" } // TODO: Remove when qbs bug is fixed
|
|
files: [ "tst_testtrie.h", "tst_testtrie.cpp" ]
|
|
cpp.defines: base.concat([
|
|
'QMLJS_BUILD_DIR',
|
|
'QTCREATORDIR="' + project.ide_source_tree + '"',
|
|
'TESTSRCDIR="' + path + '"'
|
|
])
|
|
}
|