Files
qt-creator/tests/auto/sdktool/sdktool.qbs
Marcus Tillmanns c246caf7a9 sdktool: Change tests to use QTest
* 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>
2022-04-04 14:27:46 +00:00

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) + '"'
])
}