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"