Fix qbs build on Windows.

Disable valgrind autotests for now. The people responsible for the
plugin have to decide which ones can actually be used on Windows and
which ones cannot.

Change-Id: I579de6258c73845a1935a9c220346879251bc478
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
This commit is contained in:
Christian Kandeler
2013-10-15 14:27:21 +02:00
parent 4007690022
commit 590e4c8d50
2 changed files with 1 additions and 1 deletions

View File

@@ -3,7 +3,6 @@ import "../../../autotest.qbs" as Autotest
Autotest {
name: "Memcheck " + testName + " autotest"
condition: !qbs.targetOS.contains("windows")
targetName: testName // Test runner hardcodes the names of the executables
destinationDirectory: buildDirectory + '/' + project.ide_bin_path + '/testapps/' + testName
files: "main.cpp"

View File

@@ -2,6 +2,7 @@ import qbs
Project {
name: "Valgrind autotests"
condition: !qbs.targetOS.contains("windows")
references: [
"callgrind/callgrind.qbs",
"memcheck/memcheck.qbs"