blob: 3810a02c13d93ec9c52556ecc12ad7dd01c3f539 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
TEMPLATE = app
LANGUAGE = C++
include(win/win.pri)
include(mac/mac.pri)
include(unix/unix.pri)
include (common/common.pri) # Important: keep the space before the '('
include(relativity/relativity.pri)
message($$SOURCES)
TRANSLATIONS = project.ts
exists( $$TRANSLATIONS ) {
win32: system(del $$TRANSLATIONS)
unix: system(rm $$TRANSLATIONS)
}
|