refs #452, added a resource project just adding files such as icons, data files etc.

This commit is contained in:
Klaus Basan
2015-09-23 02:23:48 +02:00
committed by Mathew Sutcliffe
parent 0e2f8f51ba
commit ab46ed615c
707 changed files with 30 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
win32:isEmpty(MINGW_IN_SHELL): COPY = xcopy /yis
else: COPY = cp -r
win32 {
QMAKE_PRE_LINK += $$COPY $$shell_path($$PWD/data) \
$$shell_path($$OUT_PWD/../../bin/resources)
}
else {
QMAKE_PRE_LINK += mkdir -p $$shell_path($$OUT_PWD/../../bin) && \
$$COPY $$shell_path($$PWD/data) \
$$shell_path($$OUT_PWD/../../bin)
}