forked from qt-creator/qt-creator
* Moved all sdktool code into a static library, allowing us to link against the actual functionality in unittests * Convert all tests to proper unittests Change-Id: I5c93be0faecbd8b68e0923655483c870a2f408b5 Reviewed-by: hjk <hjk@qt.io>
18 lines
407 B
QML
18 lines
407 B
QML
import qbs.FileInfo
|
|
|
|
QtcAutotest {
|
|
name: "sdktool autotest"
|
|
|
|
Depends { name: "sdktoolLib" }
|
|
|
|
Group {
|
|
name: "Test sources"
|
|
files: "tst_sdktool.cpp"
|
|
}
|
|
|
|
cpp.defines: base.concat([
|
|
'SDKTOOL_DIR="' + FileInfo.joinPaths(FileInfo.fromNativeSeparators(qbs.installRoot),
|
|
qbs.installPrefix, qtc.ide_libexec_path) + '"'
|
|
])
|
|
}
|