qterminal-packaging/qterminal.pro
Alf Gaida c687557478 Cherry-picking upstream version 0.6.1~114-ga50f87c.
Preparing the upcoming release, switch to experimental
Added build dependencies:
 - gcc (>= 4:6)
 - g++ (>= 4:6)
 - libkf5windowsystem-dev,
 - liblxqt0-dev (>= 0.10.96~),
 - libqt5xdg-dev (>= 1.3.1~),
Bumped Standards to 3.9.8, no changes needed
Fixed VCS fields, using https, plain /git/ and pointing to the right branch
Added Recommends qterminal-l10n
Fixed copyright Format field, using https
Exported LC_ALL=C.UTF-8, make builds reproducible
Added hardening options
Added translation control to rules
Set CMAKE_BUILD_TYPE=RelWithDebInfo
2016-07-21 16:51:51 +02:00

54 lines
1.1 KiB
Prolog

TARGET = qterminal
TEMPLATE = app
# qt5 only. Please use cmake - it's an official build tool for this software
QT += widgets
CONFIG += link_pkgconfig \
depend_includepath
PKGCONFIG += qtermwidget5
DEFINES += STR_VERSION=\\\"0.6.0\\\"
SOURCES += $$files(src/*.cpp)
HEADERS += $$files(src/*.h)
INCLUDEPATH += src
INCLUDEPATH += src/third-party
SOURCES += src/third-party/qxtglobalshortcut.cpp
HEADERS += src/third-party/qxtglobalshortcut.h
HEADERS += src/third-party/qxtglobalshortcut_p.h
win32 {
SOURCES += src/third-party/qxtglobalshortcut_win.cpp
}
unix:!macx {
SOURCES += src/third-party/qxtglobalshortcut_x11.cpp
LIBS += -L/usr/X11/lib -lX11
QT += x11extras
}
macx: {
SOURCES += src/third-party/qxtglobalshortcut_mac.cpp
}
RESOURCES += src/icons.qrc
FORMS += $$files(src/forms/*.ui)
unix {
isEmpty(PREFIX) {
PREFIX = /usr/local
}
BINDIR = $$PREFIX/bin
INSTALLS += target shortcut
target.path = $$BINDIR
DATADIR = $$PREFIX/share
shortcut.path = $$DATADIR/applications
shortcut.files = qterminal.desktop
}