forked from qt-creator/qt-creator
Just like for QtcPlugin, QtcLibrary etc. Change-Id: I395f5863f31abba589864be3ad41ad7fc893787f Reviewed-by: Jake Petroules <jake.petroules@petroules.com>
14 lines
343 B
QML
14 lines
343 B
QML
import qbs
|
|
import QtcAutotest
|
|
|
|
QtcAutotest {
|
|
name: "QtcProcess autotest"
|
|
Depends { name: "Utils" }
|
|
Depends { name: "Qt.widgets" } // TODO: qbs bug, remove when fixed
|
|
files: "tst_qtcprocess.cpp"
|
|
Properties {
|
|
condition: qbs.targetOS === "windows"
|
|
cpp.defines: base.concat(["_CRT_SECURE_NO_WARNINGS"])
|
|
}
|
|
}
|