forked from qt-creator/qt-creator
14 lines
356 B
QML
14 lines
356 B
QML
|
|
import qbs
|
||
|
|
import "../../autotest.qbs" as Autotest
|
||
|
|
|
||
|
|
Autotest {
|
||
|
|
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"
|
||
|
|
}
|