summaryrefslogtreecommitdiffstats
path: root/tools/linguist/lupdate/lupdate.pro
blob: 3ed909ae564a8b4b31860eb9bd74e72ac293e869 (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 $$QT_BUILD_TREE/include/QtDeclarative

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

8b5646061ded01fff6dc47778'>Add missing docstrings for TarInfo objects (#12555)Raymond Hettinger2019-03-272-9/+48 * bpo-36443: Disable C locale coercion and UTF-8 Mode by default (GH-12589)Victor Stinner2019-03-277-46/+58 * bpo-36441: Fixes creating a venv when debug binaries are installed. (#12566)Steve Dower2019-03-273-0/+19 * bpo-31904: Fix test_utf8_mode on VxWorks (GH-12428)hliu02019-03-272-2/+3 * bpo-36447, bpo-36447: Fix refleak in _PySys_InitMain() (GH-12586)Pablo Galindo2019-03-271-0/+1 * bpo-36444: Rework _Py_InitializeFromConfig() API (GH-12576)Victor Stinner2019-03-2711-190/+207 * bpo-35810: Incref heap-allocated types in PyObject_Init (GH-11661)Eddie Elizondo2019-03-278-10/+89 * Doc: Fixed missing punctuation in datamodel.rst (GH-12581)Jules Lasne (jlasne)2019-03-271-14/+14 * bpo-32380: add "versionadded: 3.8" to singledispatchmethod (GH-12580)Inada Naoki2019-03-271-0/+3 * bpo-36431: Use PEP 448 dict unpacking for merging two dicts. (GH-12553)Serhiy Storchaka2019-03-276-29/+14 * bpo-36407: Fix writing indentations of CDATA section (xml.dom.minidom). (GH-1...Vladimir Surjaninov2019-03-273-1/+20 * bpo-33832: Add "magic method" glossary entry (GH-7630)Andre Delfino2019-03-272-0/+8 * Minor doc improvement (GH-10341)Andre Delfino2019-03-272-3/+3 * bpo-36444: Add _PyCoreConfig._init_main (GH-12572)Victor Stinner2019-03-279-41/+42 * bpo-36444: Remove _PyMainInterpreterConfig (GH-12571)Victor Stinner2019-03-2710-417/+103 * bpo-36429: Fix starting IDLE with pyshell (#12548)Terry Jan Reedy2019-03-263-5/+14 * bpo-36301: Test Python init with isolated (GH-12569)Victor Stinner2019-03-262-0/+90 * bpo-34203: FAQ: improve wording of paragraph about 2.x vs. 3.x (GH-9821)Tal Einat2019-03-261-8/+4 * bpo-36364: fix SharedMemoryManager examples (GH-12439)Pierre Glaser2019-03-261-3/+4 * bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563)Victor Stinner2019-03-269-659/+622 * bpo-36436: Fix _testcapi.pymem_buffer_overflow() (GH-12560)Victor Stinner2019-03-262-0/+5 * bpo-36433: fix confusing error messages in classmethoddescr_call (GH-12556)Inada Naoki2019-03-263-9/+23 * Post v3.8.0a3Łukasz Langa2019-03-261-1/+1 * Merge tag 'v3.8.0a3'Łukasz Langa2019-03-2691-184/+875 |\ | * v3.8.0a3v3.8.0a3Łukasz Langa2019-03-2591-184/+875 * | bpo-36430: Fix a possible reference leak in itertools.count(). (GH-12551)Zackery Spytz2019-03-262-0/+2 * | Document that logging registers shutdown as an atexit handler (GH-12378)Andre Delfino2019-03-261-0/+4 * | Fix "the the" in the idle docs. (GH-12549)Benjamin Peterson2019-03-261-13/+11 * | bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546)Victor Stinner2019-03-2613-145/+179 * | bpo-36301: Add _Py_GetEnv() function (GH-12542)Victor Stinner2019-03-254-32/+34 * | bpo-34085: Improve wording on classmethod/staticmethod (#8228)Andre Delfino2019-03-251-12/+10 * | bpo-36345: Add a new example in the documentation of wsgiref (#12511)Stéphane Wirtel2019-03-252-0/+34 * | bpo-36301: Add _Py_GetConfigsAsDict() function (GH-12540)Victor Stinner2019-03-25