From ed9752bc0a78dd840a1f110823e0239976ede463 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Thu, 17 Oct 2013 16:13:05 +0200 Subject: [PATCH] qbs project files: Fix references to non-existing properties. Change-Id: I653231939a9495395cbe36de26b67e1535d2169e Reviewed-by: Joerg Bornemann --- src/tools/iostool/iostool.qbs | 2 +- tests/auto/valgrind/memcheck/testapps/testapp.qbs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tools/iostool/iostool.qbs b/src/tools/iostool/iostool.qbs index b893b61711c..c05359c68f7 100644 --- a/src/tools/iostool/iostool.qbs +++ b/src/tools/iostool/iostool.qbs @@ -17,7 +17,7 @@ QtcTool { cpp.linkerFlags: base.concat(["-sectcreate", "__TEXT", "__info_plist", path + "/Info.plist"]) cpp.frameworks: base.concat(["CoreFoundation", "CoreServices", "IOKit", "Security", "SystemConfiguration"]) - cpp.libraries: base.concat(["ssl", "bz2"]) + cpp.dynamicLibraries: base.concat(["ssl", "bz2"]) toolInstallDir: project.ide_libexec_path + "/ios" } diff --git a/tests/auto/valgrind/memcheck/testapps/testapp.qbs b/tests/auto/valgrind/memcheck/testapps/testapp.qbs index fcbac27d856..695997e45d4 100644 --- a/tests/auto/valgrind/memcheck/testapps/testapp.qbs +++ b/tests/auto/valgrind/memcheck/testapps/testapp.qbs @@ -3,6 +3,7 @@ import "../../../autotest.qbs" as Autotest Autotest { name: "Memcheck " + testName + " autotest" + property string testName targetName: testName // Test runner hardcodes the names of the executables destinationDirectory: buildDirectory + '/' + project.ide_bin_path + '/testapps/' + testName files: "main.cpp"