summaryrefslogtreecommitdiffstats
path: root/src/platformsupport/eventdispatchers/eventdispatchers.pri
blob: 4a562ace993702342b12ac75f5ae8d3050076f9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
unix {
SOURCES +=\
    $$PWD/qunixeventdispatcher.cpp\
    $$PWD/qgenericunixeventdispatcher.cpp\

HEADERS +=\
    $$PWD/qunixeventdispatcher_qpa_p.h\
    $$PWD/qgenericunixeventdispatcher_p.h\
} else: win32 {
SOURCES +=\
    $$PWD/qwindowsguieventdispatcher.cpp

HEADERS +=\
    $$PWD/qwindowsguieventdispatcher_p.h
}

contains(QT_CONFIG, glib) {
    SOURCES +=$$PWD/qeventdispatcher_glib.cpp
    HEADERS +=$$PWD/qeventdispatcher_glib_p.h
    QMAKE_USE_PRIVATE += glib
}