From 2d429efbde10f223ea6d8ef92ac1af0e40af6bb6 Mon Sep 17 00:00:00 2001 From: Roland Winklmeier Date: Mon, 5 Oct 2015 13:47:31 +0000 Subject: [PATCH] Fix copying of swift resources on unix platforms --- resources/swift_resources.pri | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/resources/swift_resources.pri b/resources/swift_resources.pri index 11eb971f6..fa056adf6 100644 --- a/resources/swift_resources.pri +++ b/resources/swift_resources.pri @@ -8,7 +8,9 @@ win32 { $$shell_path($$OUT_PWD/../../bin/resources/swiftDB) } else { - QMAKE_PRE_LINK += mkdir -p $$shell_path($$OUT_PWD/../../bin) \ - && $$COPY $$shell_path($$PWD/data) $$shell_path($$PWD/swiftDB) \ - $$shell_path($$OUT_PWD/../../bin) + QMAKE_PRE_LINK += mkdir -p $$shell_path($$OUT_PWD/../../bin/resources) \ + && $$COPY $$shell_path($$PWD/data) \ + $$shell_path($$OUT_PWD/../../bin/resources) \ + && $$COPY $$shell_path($$PWD/swiftDB) \ + $$shell_path($$OUT_PWD/../../bin/resources/swiftDB) }