summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorten Johan Sørvig <morten.sorvig@theqtcompany.com>2016-02-22 09:52:39 +0100
committerMorten Johan Sørvig <morten.sorvig@theqtcompany.com>2016-02-22 09:40:36 +0000
commit7fb4ec1dd9498a1775b9922710abea440bf0dcc5 (patch)
tree72cceaee2541d8b79daa1ecb4e21c13443ab75fa
parentd63a58095f3d43a69bfb16d3d064455da8a8a6ab (diff)
nacldeployqt: whitespace fixups
Change-Id: I7d4237f640b9d7f6165c955f7a0fafb97061c94a Reviewed-by: Morten Johan Sørvig <morten.sorvig@theqtcompany.com>
-rw-r--r--src/tools/nacldeployqt/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/nacldeployqt/main.cpp b/src/tools/nacldeployqt/main.cpp
index fac933972e..cdc982e8f8 100644
--- a/src/tools/nacldeployqt/main.cpp
+++ b/src/tools/nacldeployqt/main.cpp
@@ -88,7 +88,7 @@ int QtNaclDeployer::deploy()
qDebug() << "File not found" << binary;
return 0;
}
-
+
if (!quickImports && QFile::exists(binary + "_qml_plugin_import.cpp")) {
qDebug() << "Note: qml_plugin_import.cpp file found. Auto-enabling --quick option.";
quickImports = true;
@@ -203,11 +203,11 @@ int QtNaclDeployer::deploy()
QString nmfCommand = QStringLiteral("python ") + createNmf
+ " -o " + nmfFilePath
+ " -L " + qtLibDir // Add Qt libs search payh
- + " -s . " // copy dependencies
-// + " --debug-libs"
+ + " -s . " // copy dependencies
+// + " --debug-libs"
+ " " + finalBinaryPath
+ " " + (debug ? binary : QString("")); // deploy .bc when debugging (adds a "pnacl-debug" section to the nmf)
-
+
runCommand(nmfCommand.toLatin1().constData());
}