forked from qt-creator/qt-creator
15 lines
255 B
QML
15 lines
255 B
QML
|
|
import qbs
|
||
|
|
|
||
|
|
QtcManualtest {
|
||
|
|
name: "Manual QtcProcess test"
|
||
|
|
condition: qbs.targetOS.contains("unix")
|
||
|
|
Depends { name: "Utils" }
|
||
|
|
targetName: "process"
|
||
|
|
|
||
|
|
files: [
|
||
|
|
"main.cpp",
|
||
|
|
"mainwindow.cpp",
|
||
|
|
"mainwindow.h"
|
||
|
|
]
|
||
|
|
}
|