forked from qt-creator/qt-creator
The respective items are available without it. Change-Id: Idc840cf08e7bec84f561c096afe8de25b1fb8468 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
13 lines
319 B
QML
13 lines
319 B
QML
import qbs
|
|
|
|
QtcAutotest {
|
|
name: "FileUtils autotest"
|
|
Depends { name: "Utils" }
|
|
Depends { name: "Qt.widgets" } // TODO: Remove when qbs bug is fixed
|
|
Properties {
|
|
condition: qbs.toolchain.contains("gcc")
|
|
cpp.cxxFlags: base.concat(["-Wno-trigraphs"])
|
|
}
|
|
files: "tst_fileutils.cpp"
|
|
}
|