forked from qt-creator/qt-creator
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>
11 lines
195 B
QML
11 lines
195 B
QML
import qbs
|
|
|
|
Project {
|
|
name: "Valgrind autotests"
|
|
condition: !qbs.targetOS.contains("windows")
|
|
references: [
|
|
"callgrind/callgrind.qbs",
|
|
"memcheck/memcheck.qbs"
|
|
]
|
|
}
|