From aa2094761aec16001ac0d19bf85483fdc2c78611 Mon Sep 17 00:00:00 2001 From: Raphael Cotty Date: Fri, 28 Jan 2022 11:46:05 +0100 Subject: Use Host and FileInfo service Replace all the possible use of the qbs module that can be replaced by the Host and FileInfo services. Change-Id: I0d6f820bb2577eacd9081ec2df1eb53adf94d50e Reviewed-by: Ivan Komissarov --- tests/auto/blackbox/testdata-windows/wix/WiXInstallers.qbs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/auto/blackbox/testdata-windows') diff --git a/tests/auto/blackbox/testdata-windows/wix/WiXInstallers.qbs b/tests/auto/blackbox/testdata-windows/wix/WiXInstallers.qbs index 7e1dbf5e3..1316d07d7 100644 --- a/tests/auto/blackbox/testdata-windows/wix/WiXInstallers.qbs +++ b/tests/auto/blackbox/testdata-windows/wix/WiXInstallers.qbs @@ -1,4 +1,5 @@ import qbs.FileInfo +import qbs.Host Project { WindowsInstallerPackage { @@ -19,7 +20,7 @@ Project { WindowsSetupPackage { Depends { name: "QbsSetup" } - condition: qbs.hostOS.contains("windows") // currently does not work in Wine with WiX 3.9 + condition: Host.os().contains("windows") // currently does not work in Wine with WiX 3.9 name: "QbsBootstrapper" targetName: "qbs-setup-" + qbs.architecture files: ["QbsBootstrapper.wxs"] -- cgit v1.2.3