2013-12-02 16:55:42 +01:00
|
|
|
import qbs
|
2014-04-29 13:42:37 +02:00
|
|
|
import QtcAutotest
|
2013-12-02 16:55:42 +01:00
|
|
|
|
2014-04-29 13:42:37 +02:00
|
|
|
QtcAutotest {
|
2013-12-02 16:55:42 +01:00
|
|
|
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 + '"'
|
|
|
|
|
])
|
|
|
|
|
}
|