forked from qt-creator/qt-creator
9d677e3302
The respective items are available without it. Change-Id: Idc840cf08e7bec84f561c096afe8de25b1fb8468 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
27 lines
673 B
QML
27 lines
673 B
QML
import qbs
|
|
|
|
QtcAutotest {
|
|
name: "Generic highlighter specific rules autotest"
|
|
Depends { name: "Qt.widgets" }
|
|
Group {
|
|
name: "Sources from TextEditor plugin"
|
|
prefix: project.genericHighlighterDir + '/'
|
|
files: [
|
|
"context.cpp",
|
|
"dynamicrule.cpp",
|
|
"highlightdefinition.cpp",
|
|
"itemdata.cpp",
|
|
"keywordlist.cpp",
|
|
"progressdata.cpp",
|
|
"rule.cpp",
|
|
"specificrules.cpp",
|
|
]
|
|
}
|
|
Group {
|
|
name: "Test sources"
|
|
files: "tst_specificrules.cpp"
|
|
}
|
|
|
|
cpp.includePaths: base.concat([project.genericHighlighterDir + "/../.."])
|
|
}
|