forked from qt-creator/qt-creator
Change-Id: Iac64b8e813f90f727c7469073ea491628ab3014d Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
21 lines
618 B
QML
21 lines
618 B
QML
import qbs.FileInfo
|
|
|
|
QtcManualTest {
|
|
name: "CmdBridge manualtest"
|
|
|
|
Depends { name: "app_version_header" }
|
|
Depends { name: "CmdBridgeClient" }
|
|
Depends { name: "Utils" }
|
|
|
|
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;
|
|
}
|
|
|
|
files: "tst_cmdbridge.cpp"
|
|
}
|