summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@nokia.com>2012-04-13 14:24:13 +0200
committerTim Jenssen <tim.jenssen@nokia.com>2012-04-13 14:56:47 +0200
commit6f929b707aa25a18f412c722c5117dfe737c9e93 (patch)
tree2ed521e02aa9d50db7fcb5f57034fa50658b20c4 /tools
parent7b6ffbcab878608fb1e1b00dc67d4c5636ad85eb (diff)
add missing config.xml to one example
- and added seperator instead of hardcoded "/" Change-Id: I26fa9b0dac5d0e0d131b628ef78ff8eca3a5fb2a Reviewed-by: Karsten Heimrich <karsten.heimrich@nokia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/binarycreator/binarycreator.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/binarycreator/binarycreator.cpp b/tools/binarycreator/binarycreator.cpp
index a3ac6c280..a407fad58 100644
--- a/tools/binarycreator/binarycreator.cpp
+++ b/tools/binarycreator/binarycreator.cpp
@@ -410,13 +410,14 @@ static void printUsage()
std::cout << "Packages are to be found in the current working directory and get listed as "
"their names" << std::endl << std::endl;
std::cout << "Example (offline installer):" << std::endl;
- std::cout << " " << appName << " --offline-only -c installer-config -p packages-directory -t "
- "installerbase SDKInstaller.exe" << std::endl;
+ char sep = QDir::separator().toAscii();
+ std::cout << " " << appName << " --offline-only -c installer-config" << sep << "config.xml -p "
+ "packages-directory -t installerbase SDKInstaller.exe" << std::endl;
std::cout << "Creates an offline installer for the SDK, containing all dependencies." << std::endl;
std::cout << std::endl;
std::cout << "Example (online installer):" << std::endl;
- std::cout << " " << appName << " -c installer-config/config.xml -p packages-directory -e com.nokia.sdk.qt,"
- "com.nokia.qtcreator -t installerbase SDKInstaller.exe" << std::endl;
+ std::cout << " " << appName << " -c installer-config" << sep << "config.xml -p packages-directory "
+ "-e com.nokia.sdk.qt,com.nokia.qtcreator -t installerbase SDKInstaller.exe" << std::endl;
std::cout << std::endl;
std::cout << "Creates an installer for the SDK without qt and qt creator." << std::endl;
std::cout << std::endl;