blob: 1f8893139e975fb3f1c3d3eb474597dd70c8a14f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
TEMPLATE = app
TARGET = lupdate
DESTDIR = ../../../bin
QT -= gui
CONFIG += qt warn_on console
CONFIG -= app_bundle
build_all:!build_pass {
CONFIG -= build_all
CONFIG += release
}
include(../shared/formats.pri)
include(../shared/proparser.pri)
include($$QT_SOURCE_TREE/src/declarative/qml/parser/parser.pri)
INCLUDEPATH += $$QT_SOURCE_TREE/src/declarative/qml
SOURCES += \
main.cpp \
merge.cpp \
../shared/simtexth.cpp \
\
cpp.cpp \
java.cpp \
qscript.cpp \
qdeclarative.cpp \
ui.cpp
HEADERS += \
lupdate.h \
../shared/simtexth.h
DEFINES += QT_NO_CAST_TO_ASCII QT_NO_CAST_FROM_ASCII
win32:RC_FILE = winmanifest.rc
embed_manifest_exe:win32-msvc2005 {
# The default configuration embed_manifest_exe overrides the manifest file
# already embedded via RC_FILE. Vs2008 already have the necessary manifest entry
QMAKE_POST_LINK += $$quote(mt.exe -updateresource:$$DESTDIR/lupdate.exe -manifest \"$${PWD}\\lupdate.exe.manifest\")
}
target.path=$$[QT_INSTALL_BINS]
INSTALLS += target
|