summaryrefslogtreecommitdiff
path: root/tests/auto/linguist/lupdate/testdata/good/merge_versions/project.pro
blob: 70dd7ce068d27faa4d7aafd3ca2b13632e33efc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
FORMS += project.ui

TRANSLATIONS = project.ts

# Copy the ts to a temp file because:
# 1. The depot file is usually read-only
# 2. We don't want to modify the original file, since then it won't be possible to run the test twice
#    without reverting the original file again.

win32: system(copy /Y project.ts.before $$TRANSLATIONS)
unix: system(cp -f project.ts.before $$TRANSLATIONS && chmod a+w $$TRANSLATIONS)