forked from qt-creator/qt-creator
ed30c612f4
That was most likely QBS-755. Change-Id: I43d0316113fcca79554bfee9eee9b8bd706fce07 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
22 lines
494 B
QML
22 lines
494 B
QML
import qbs
|
|
|
|
QtcAutotest {
|
|
name: "ExternalTool autotest"
|
|
Depends { name: "Core" }
|
|
Depends { name: "app_version_header" }
|
|
|
|
Group {
|
|
name: "Duplicated sources from Core plugin" // Ewww. But the .pro file does the same.
|
|
prefix: project.ide_source_tree + "/src/plugins/coreplugin/"
|
|
files: [
|
|
"externaltool.cpp",
|
|
"externaltool.h"
|
|
]
|
|
}
|
|
|
|
Group {
|
|
name: "Test sources"
|
|
files: "tst_externaltooltest.cpp"
|
|
}
|
|
}
|