| 1 | # Qt kernel module
|
|---|
| 2 |
|
|---|
| 3 | # Only used on platforms with CONFIG += precompile_header
|
|---|
| 4 | PRECOMPILED_HEADER = kernel/qt_gui_pch.h
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 | KERNEL_P= kernel
|
|---|
| 8 | HEADERS += \
|
|---|
| 9 | kernel/qaction.h \
|
|---|
| 10 | kernel/qaction_p.h \
|
|---|
| 11 | kernel/qactiongroup.h \
|
|---|
| 12 | kernel/qapplication.h \
|
|---|
| 13 | kernel/qapplication_p.h \
|
|---|
| 14 | kernel/qboxlayout.h \
|
|---|
| 15 | kernel/qclipboard.h \
|
|---|
| 16 | kernel/qcursor.h \
|
|---|
| 17 | kernel/qdesktopwidget.h \
|
|---|
| 18 | kernel/qdrag.h \
|
|---|
| 19 | kernel/qdnd_p.h \
|
|---|
| 20 | kernel/qevent.h \
|
|---|
| 21 | kernel/qevent_p.h \
|
|---|
| 22 | kernel/qformlayout.h \
|
|---|
| 23 | kernel/qgridlayout.h \
|
|---|
| 24 | kernel/qkeysequence.h \
|
|---|
| 25 | kernel/qlayout.h \
|
|---|
| 26 | kernel/qlayout_p.h \
|
|---|
| 27 | kernel/qlayoutengine_p.h \
|
|---|
| 28 | kernel/qlayoutitem.h \
|
|---|
| 29 | kernel/qmime.h \
|
|---|
| 30 | kernel/qsessionmanager.h \
|
|---|
| 31 | kernel/qshortcut.h \
|
|---|
| 32 | kernel/qshortcutmap_p.h \
|
|---|
| 33 | kernel/qsizepolicy.h \
|
|---|
| 34 | kernel/qpalette.h \
|
|---|
| 35 | kernel/qsound.h \
|
|---|
| 36 | kernel/qsound_p.h \
|
|---|
| 37 | kernel/qstackedlayout.h \
|
|---|
| 38 | kernel/qtooltip.h \
|
|---|
| 39 | kernel/qwhatsthis.h \
|
|---|
| 40 | kernel/qwidget.h \
|
|---|
| 41 | kernel/qwidget_p.h \
|
|---|
| 42 | kernel/qwidgetaction.h \
|
|---|
| 43 | kernel/qwidgetaction_p.h \
|
|---|
| 44 | kernel/qwindowdefs.h \
|
|---|
| 45 | kernel/qkeymapper_p.h \
|
|---|
| 46 | kernel/qgesture.h \
|
|---|
| 47 | kernel/qgesture_p.h \
|
|---|
| 48 | kernel/qstandardgestures_p.h \
|
|---|
| 49 | kernel/qgesturerecognizer.h \
|
|---|
| 50 | kernel/qgesturemanager_p.h \
|
|---|
| 51 | kernel/qsoftkeymanager_p.h \
|
|---|
| 52 | kernel/qsoftkeymanager_common_p.h \
|
|---|
| 53 | kernel/qguiplatformplugin_p.h
|
|---|
| 54 |
|
|---|
| 55 | SOURCES += \
|
|---|
| 56 | kernel/qaction.cpp \
|
|---|
| 57 | kernel/qactiongroup.cpp \
|
|---|
| 58 | kernel/qapplication.cpp \
|
|---|
| 59 | kernel/qboxlayout.cpp \
|
|---|
| 60 | kernel/qclipboard.cpp \
|
|---|
| 61 | kernel/qcursor.cpp \
|
|---|
| 62 | kernel/qdrag.cpp \
|
|---|
| 63 | kernel/qdnd.cpp \
|
|---|
| 64 | kernel/qevent.cpp \
|
|---|
| 65 | kernel/qformlayout.cpp \
|
|---|
| 66 | kernel/qgridlayout.cpp \
|
|---|
| 67 | kernel/qkeysequence.cpp \
|
|---|
| 68 | kernel/qlayout.cpp \
|
|---|
| 69 | kernel/qlayoutengine.cpp \
|
|---|
| 70 | kernel/qlayoutitem.cpp \
|
|---|
| 71 | kernel/qmime.cpp \
|
|---|
| 72 | kernel/qpalette.cpp \
|
|---|
| 73 | kernel/qshortcut.cpp \
|
|---|
| 74 | kernel/qshortcutmap.cpp \
|
|---|
| 75 | kernel/qsound.cpp \
|
|---|
| 76 | kernel/qstackedlayout.cpp \
|
|---|
| 77 | kernel/qtooltip.cpp \
|
|---|
| 78 | kernel/qguivariant.cpp \
|
|---|
| 79 | kernel/qwhatsthis.cpp \
|
|---|
| 80 | kernel/qwidget.cpp \
|
|---|
| 81 | kernel/qwidgetaction.cpp \
|
|---|
| 82 | kernel/qkeymapper.cpp \
|
|---|
| 83 | kernel/qgesture.cpp \
|
|---|
| 84 | kernel/qstandardgestures.cpp \
|
|---|
|
|---|