File: diaglib.pri

package info (click to toggle)
qtbase-opensource-src 5.11.3%2Bdfsg1-1%2Bdeb10u5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 313,804 kB
  • sloc: cpp: 1,831,962; ansic: 318,856; xml: 113,585; python: 9,691; java: 7,209; asm: 4,023; perl: 2,151; sh: 1,790; yacc: 1,733; lex: 1,197; javascript: 469; makefile: 301; objc: 70
file content (53 lines) | stat: -rw-r--r-- 1,076 bytes parent folder | download
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
50
51
52
53
INCLUDEPATH += $$PWD
SOURCES += \
    $$PWD/textdump.cpp \
    $$PWD/eventfilter.cpp \
    $$PWD/qwindowdump.cpp

HEADERS += \
    $$PWD/textdump.h \
    $$PWD/eventfilter.h \
    $$PWD/qwindowdump.h \
    $$PWD/nativewindowdump.h

win32:!winrt:  {
    SOURCES += $$PWD/nativewindowdump_win.cpp
    LIBS *= -luser32
} else {
    SOURCES += $$PWD/nativewindowdump.cpp
}

greaterThan(QT_MAJOR_VERSION, 4) {
    QT += gui-private core-private
    contains(QT, widgets) {
        HEADERS += \
            $$PWD/qwidgetdump.h \
            $$PWD/debugproxystyle.h \
            $$PWD/logwidget.h

        SOURCES += \
            $$PWD/qwidgetdump.cpp \
            $$PWD/debugproxystyle.cpp \
            $$PWD/logwidget.cpp
    }
} else {
    HEADERS += \
        $$PWD/qwidgetdump.h \
        $$PWD/debugproxystyle.h \
        $$PWD/logwidget.h

    SOURCES += \
        $$PWD/qwidgetdump.cpp \
        $$PWD/debugproxystyle.cpp \
        $$PWD/logwidget.cpp
}

contains(QT, opengl) {
HEADERS += \
    $$PWD/glinfo.h

SOURCES += \
    $$PWD/glinfo.cpp
}

DEFINES += QT_DIAG_LIB