Created
December 18, 2010 17:25
-
-
Save wimleers/746677 to your computer and use it in GitHub Desktop.
Automatically copy all files listed in OTHER_FILES to the build directory when using shadow builds.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copy all OTHER_FILES to the build directory when using shadow builds. | |
!equals($${PWD}, $${OUT_PWD}) { | |
unix:COPY = cp | |
win32:COPY = copy /y | |
for(other_file, OTHER_FILES) { | |
QMAKE_PRE_LINK += $${COPY} $${PWD}/$${other_file} $${OUT_PWD}/$${other_file}; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment