Files
qt-creator/tests/auto/valgrind/memcheck/modeldemo.qbs
Christian Kandeler a0f956f050 qbs build: Introduce new module "qtc".
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>
2016-06-08 08:46:00 +00:00

14 lines
434 B
QML

import qbs
import "../valgrindautotest.qbs" as ValgrindAutotest
ValgrindAutotest {
name: "Memcheck ModelDemo autotest"
Depends { name: "valgrind-fake" }
Depends { name: "Qt.network" }
files: ["modeldemo.h", "modeldemo.cpp"]
cpp.defines: base.concat([
'PARSERTESTS_DATA_DIR="' + path + '/data"',
'VALGRIND_FAKE_PATH="' + project.buildDirectory + '/' + qtc.ide_bin_path + '/valgrind-fake"'
])
}