diff options
Diffstat (limited to 'tests/auto/linguist/lupdate/testdata/good/preprocess/project.pro')
-rw-r--r-- | tests/auto/linguist/lupdate/testdata/good/preprocess/project.pro | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/linguist/lupdate/testdata/good/preprocess/project.pro b/tests/auto/linguist/lupdate/testdata/good/preprocess/project.pro new file mode 100644 index 0000000000..012c7e08aa --- /dev/null +++ b/tests/auto/linguist/lupdate/testdata/good/preprocess/project.pro @@ -0,0 +1,12 @@ +TEMPLATE = app +LANGUAGE = C++ + +SOURCES += main.cpp + +TRANSLATIONS += project.ts + +exists( $$TRANSLATIONS ) { + win32: system(del $$TRANSLATIONS) + unix: system(rm -f $$TRANSLATIONS) +} + |