aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2014-04-15 15:10:23 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-15 20:15:47 +0200
commit547db13219cd6375af43c801491a5d33f522b86f (patch)
tree6108faf4bf6d0d828462febab27b900359edb351 /examples/quick
parent9983cccf14d04d1d9e3520428599f06e03b8321d (diff)
Change slashes depending on host in tutorial gettingStartedQml.
Task-number: QTBUG-38224 Change-Id: Ib2c14b88bd86f2c1254be716a9fa4f93143bbd0a Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'examples/quick')
-rw-r--r--examples/quick/tutorials/gettingStartedQml/filedialog/filedialog.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/quick/tutorials/gettingStartedQml/filedialog/filedialog.pro b/examples/quick/tutorials/gettingStartedQml/filedialog/filedialog.pro
index 0886f37b1f..468c0a0d92 100644
--- a/examples/quick/tutorials/gettingStartedQml/filedialog/filedialog.pro
+++ b/examples/quick/tutorials/gettingStartedQml/filedialog/filedialog.pro
@@ -24,7 +24,7 @@ copyfile = $$PWD/qmldir
copydest = $$DESTDIR
# On Windows, use backslashes as directory separators
-win32: {
+equals(QMAKE_HOST.os, Windows) {
copyfile ~= s,/,\\,g
copydest ~= s,/,\\,g
}