forked from qt-creator/qt-creator
17 lines
547 B
QML
17 lines
547 B
QML
import qbs.FileInfo
|
|
|
|
QtcAutotest {
|
|
name: "SSH autotest"
|
|
Depends { name: "QtcSsh" }
|
|
Depends { name: "Utils" }
|
|
files: "tst_ssh.cpp"
|
|
cpp.defines: {
|
|
var defines = base;
|
|
var absLibExecPath = FileInfo.joinPaths(qbs.installRoot, qbs.installPrefix,
|
|
qtc.ide_libexec_path);
|
|
var relLibExecPath = FileInfo.relativePath(destinationDirectory, absLibExecPath);
|
|
defines.push('TEST_RELATIVE_LIBEXEC_PATH="' + relLibExecPath + '"');
|
|
return defines;
|
|
}
|
|
}
|