Added .pri file

This commit is contained in:
MOZGIII 2015-09-25 21:11:25 +03:00
parent aa0383dd4b
commit 7ab3b98a5c
1 changed files with 21 additions and 0 deletions

21
QxtGlobalShortcut.pri Normal file
View File

@ -0,0 +1,21 @@
DEFINES += QXT_STATIC
INCLUDEPATH += $$PWD/src/core
HEADERS += $$PWD/src/core/qxtglobal.h
SOURCES += $$PWD/src/core/qxtglobal.cpp
INCLUDEPATH += $$PWD/src/widgets
HEADERS += \
$$PWD/src/widgets/qxtglobalshortcut.h
$$PWD/src/widgets/qxtglobalshortcut_p.h
SOURCES += \
$$PWD/src/widgets/qxtglobalshortcut.cpp
unix:!macx:SOURCES += $$PWD/src/widgets/x11/qxtglobalshortcut_x11.cpp
macx:SOURCES += $$PWD/src/widgets/mac/qxtglobalshortcut_mac.cpp
win32:SOURCES += $$PWD/src/widgets/win/qxtglobalshortcut_win.cpp
unix:!macx:QT += x11extras
macx:QMAKE_LFLAGS += -framework Carbon -framework CoreFoundation