FeedTheMonkey/FeedTheMonkey.pro
2015-03-04 08:55:18 +01:00

56 lines
1.1 KiB
Prolog

TARGET = feedthemonkey
TEMPLATE = app
QT += qml quick
CONFIG += c++11
SOURCES += \
src/main.cpp \
src/post.cpp \
src/tinytinyrss.cpp \
src/tinytinyrsslogin.cpp
RESOURCES += \
html/html.qrc \
misc/misc.qrc \
qml/qml.qrc \
mac {
RC_FILE = misc/Icon.icns
TARGET = FeedTheMonkey
}
unix {
target.path = $$PREFIX/usr/local/bin
shortcutfiles.files = misc/feedthemonkey.desktop
shortcutfiles.path = $$PREFIX/usr/share/applications/
data.files += misc/feedthemonkey.xpm
data.path = $$PREFIX/usr/share/pixmaps/
INSTALLS += shortcutfiles
INSTALLS += data
}
INSTALLS += target
# Needed for bringing browser from background to foreground using QDesktopServices: http://bugreports.qt-project.org/browse/QTBUG-8336
TARGET.CAPABILITY += SwEvent
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
OTHER_FILES +=
HEADERS += \
src/post.h \
src/tinytinyrss.h \
src/tinytinyrsslogin.h
DISTFILES += \
misc/feedthemonkey.desktop \
misc/feedthemonkey.xpm \
misc/Icon.icns \
README.md \
LICENSE.txt