forked from qt-creator/qt-creator
QT_USE_FAST_CONCATENATION doesn't do anything nowadays. Using QT_USE_QSTRINGBUILDER is the same as QT_USE_FAST_OPERATOR_PLUS for QStrings and enables more QStringBuilder use for QByteArrays. Change-Id: Ibd297817c50d86661d47822799f989447249af1b Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
11 lines
226 B
QML
11 lines
226 B
QML
import qbs
|
|
|
|
QtcAutotest {
|
|
name: "TemplateEngine autotest"
|
|
Depends { name: "Utils" }
|
|
cpp.defines: base.filter(function(d) {
|
|
return d !== "QT_USE_QSTRINGBUILDER";
|
|
})
|
|
files: "tst_templateengine.cpp"
|
|
}
|