qbs project files: Fix references to non-existing properties.

Change-Id: I653231939a9495395cbe36de26b67e1535d2169e
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
This commit is contained in:
Christian Kandeler
2013-10-17 16:13:05 +02:00
parent f30bd48b58
commit ed9752bc0a
2 changed files with 2 additions and 1 deletions

View File

@@ -17,7 +17,7 @@ QtcTool {
cpp.linkerFlags: base.concat(["-sectcreate", "__TEXT", "__info_plist", path + "/Info.plist"]) cpp.linkerFlags: base.concat(["-sectcreate", "__TEXT", "__info_plist", path + "/Info.plist"])
cpp.frameworks: base.concat(["CoreFoundation", "CoreServices", "IOKit", "Security", cpp.frameworks: base.concat(["CoreFoundation", "CoreServices", "IOKit", "Security",
"SystemConfiguration"]) "SystemConfiguration"])
cpp.libraries: base.concat(["ssl", "bz2"]) cpp.dynamicLibraries: base.concat(["ssl", "bz2"])
toolInstallDir: project.ide_libexec_path + "/ios" toolInstallDir: project.ide_libexec_path + "/ios"
} }

View File

@@ -3,6 +3,7 @@ import "../../../autotest.qbs" as Autotest
Autotest { Autotest {
name: "Memcheck " + testName + " autotest" name: "Memcheck " + testName + " autotest"
property string testName
targetName: testName // Test runner hardcodes the names of the executables targetName: testName // Test runner hardcodes the names of the executables
destinationDirectory: buildDirectory + '/' + project.ide_bin_path + '/testapps/' + testName destinationDirectory: buildDirectory + '/' + project.ide_bin_path + '/testapps/' + testName
files: "main.cpp" files: "main.cpp"