28 lines
587 B
Prolog
28 lines
587 B
Prolog
TEMPLATE = app
|
|
|
|
QT += qml quick
|
|
|
|
SOURCES += main.cpp \
|
|
tinytinyrss.cpp \
|
|
tinytinyrsslogin.cpp
|
|
|
|
RESOURCES += qml.qrc \
|
|
html.qrc
|
|
|
|
# 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 =
|
|
|
|
# Default rules for deployment.
|
|
include(deployment.pri)
|
|
|
|
OTHER_FILES += \
|
|
content.html \
|
|
content.css \
|
|
content.js
|
|
|
|
HEADERS += \
|
|
tinytinyrss.h \
|
|
tinytinyrsslogin.h
|