ce1830fd21
Started-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io> Change-Id: I211ce3252b836894aeeac1c85eb316d9596bca57 Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
54 lines
1.1 KiB
Plaintext
54 lines
1.1 KiB
Plaintext
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
|
|
QMAKE_USE += user32
|
|
} 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
|