summaryrefslogtreecommitdiffstats
path: root/src/platformsupport/eventdispatchers/eventdispatchers.pri
blob: a0b37cae1a436b967abc70a23a5d891bf725eb4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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_CXXFLAGS += $$QT_CFLAGS_GLIB
    LIBS_PRIVATE += $$QT_LIBS_GLIB
}