forked from ddqd/qxtglobalshortcut5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqxt.pri
43 lines (33 loc) · 1019 Bytes
/
qxt.pri
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
QT += network gui-private
unix:!macx:{ QT += x11extras }
CONFIG += qxt
QXT += core gui widgets
DEFINES += BUILD_QXT_CORE \
BUILD_QXT_GUI
DEPENDPATH += $$PWD/gui \
$$PWD/core
INCLUDEPATH += $$PWD/core \
$$PWD/gui
HEADERS += $$PWD/core/qxtglobal.h \
$$PWD/gui/qxtglobalshortcut_p.h \
$$PWD/gui/qxtglobalshortcut.h \
$$PWD/gui/qxtwindowsystem.h
SOURCES += $$PWD/core/qxtglobal.cpp \
$$PWD/gui/qxtwindowsystem.cpp \
$$PWD/gui/qxtglobalshortcut.cpp
unix:!macx {
CONFIG += X11
SOURCES += $$PWD/gui/qxtwindowsystem_x11.cpp \
$$PWD/gui/qxtglobalshortcut_x11.cpp
HEADERS += $$PWD/gui/x11info.h
}
macx: {
SOURCES += $$PWD/gui/qxtwindowsystem_mac.cpp \
$$PWD/gui/qxtglobalshortcut_mac.cpp
HEADERS += $$PWD/qxtwindowsystem_mac.h
QMAKE_LFLAGS += -framework Carbon -framework CoreFoundation
}
win32: {
SOURCES += $$PWD/gui/qxtwindowsystem_win.cpp \
$$PWD/gui/qxtglobalshortcut_win.cpp
}