diff options
author | Friedemann Kleint <[email protected]> | 2014-04-15 15:10:23 +0200 |
---|---|---|
committer | The Qt Project <[email protected]> | 2014-04-15 20:15:47 +0200 |
commit | 547db13219cd6375af43c801491a5d33f522b86f (patch) | |
tree | 6108faf4bf6d0d828462febab27b900359edb351 /examples/quick/tutorials | |
parent | 9983cccf14d04d1d9e3520428599f06e03b8321d (diff) |
Change slashes depending on host in tutorial gettingStartedQml.
Task-number: QTBUG-38224
Change-Id: Ib2c14b88bd86f2c1254be716a9fa4f93143bbd0a
Reviewed-by: Oswald Buddenhagen <[email protected]>
Diffstat (limited to 'examples/quick/tutorials')
-rw-r--r-- | examples/quick/tutorials/gettingStartedQml/filedialog/filedialog.pro | 2 |
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 } |