forked from qt-creator/qt-creator
The qtc module gathers properties that used to live in the top-level
project file. This is the first step towards making it possible to build
plugins against an installed Qt Creator ("out of source build").
Change-Id: Ia1514cc9c888e80be01b308e908de48980fcbdb8
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
13 lines
240 B
QML
13 lines
240 B
QML
import qbs
|
|
|
|
QtcAutotest {
|
|
name: "sdktool autotest"
|
|
|
|
Group {
|
|
name: "Test sources"
|
|
files: "tst_sdktool.cpp"
|
|
}
|
|
|
|
cpp.defines: base.concat(['SDKTOOL_DIR="' + qbs.installRoot + '/' + qtc.ide_libexec_path + '"'])
|
|
}
|