forked from qt-creator/qt-creator
Change-Id: I27918b0beaa39926c13dbf54e1479502a598a598 Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
95 lines
2.2 KiB
QML
95 lines
2.2 KiB
QML
import qbs
|
|
|
|
QtcCommercialPlugin {
|
|
name: "AutoTest"
|
|
|
|
Depends { name: "Core" }
|
|
Depends { name: "CppTools" }
|
|
Depends { name: "CPlusPlus" }
|
|
Depends { name: "ProjectExplorer" }
|
|
Depends { name: "QmlJS" }
|
|
Depends { name: "QmlJSTools" }
|
|
Depends { name: "Utils" }
|
|
|
|
pluginTestDepends: [
|
|
"QbsProjectManager",
|
|
"QmakeProjectManager"
|
|
]
|
|
|
|
Depends {
|
|
name: "QtSupport"
|
|
condition: project.testsEnabled
|
|
}
|
|
|
|
Depends {
|
|
name: "Qt.test"
|
|
condition: project.testsEnabled
|
|
}
|
|
|
|
Depends { name: "Qt.widgets" }
|
|
|
|
files: [
|
|
"autotest.qrc",
|
|
"autotest_global.h",
|
|
"autotestconstants.h",
|
|
"autotestplugin.cpp",
|
|
"autotestplugin.h",
|
|
"testcodeparser.cpp",
|
|
"testcodeparser.h",
|
|
"testconfiguration.cpp",
|
|
"testconfiguration.h",
|
|
"testinfo.cpp",
|
|
"testinfo.h",
|
|
"testnavigationwidget.cpp",
|
|
"testnavigationwidget.h",
|
|
"testresult.cpp",
|
|
"testresult.h",
|
|
"testresultdelegate.cpp",
|
|
"testresultdelegate.h",
|
|
"testresultmodel.cpp",
|
|
"testresultmodel.h",
|
|
"testresultspane.cpp",
|
|
"testresultspane.h",
|
|
"testrunner.cpp",
|
|
"testrunner.h",
|
|
"testsettings.cpp",
|
|
"testsettings.h",
|
|
"testsettingspage.cpp",
|
|
"testsettingspage.h",
|
|
"testsettingspage.ui",
|
|
"testtreeitem.cpp",
|
|
"testtreeitem.h",
|
|
"testtreeitemdelegate.cpp",
|
|
"testtreeitemdelegate.h",
|
|
"testtreemodel.cpp",
|
|
"testtreemodel.h",
|
|
"testtreeview.cpp",
|
|
"testtreeview.h",
|
|
"testvisitor.cpp",
|
|
"testvisitor.h",
|
|
"testxmloutputreader.cpp",
|
|
"testxmloutputreader.h",
|
|
]
|
|
|
|
Group {
|
|
name: "Test sources"
|
|
condition: project.testsEnabled
|
|
files: [
|
|
"autotestunittests.cpp",
|
|
"autotestunittests.h",
|
|
"autotestunittests.qrc",
|
|
]
|
|
}
|
|
|
|
Group {
|
|
name: "Auto Test Wizard"
|
|
prefix: "../../shared/autotest/"
|
|
files: [
|
|
"*"
|
|
]
|
|
fileTags: []
|
|
qbs.install: true
|
|
qbs.installDir: project.ide_data_path + "/templates/wizards/autotest"
|
|
}
|
|
}
|