40 lines
929 B
Prolog
40 lines
929 B
Prolog
TEMPLATE = app
|
|
TARGET = harbour-calibreweb
|
|
|
|
CONFIG += sailfishapp
|
|
CONFIG += c++11
|
|
|
|
SOURCES += \
|
|
src/main.cpp \
|
|
src/settings.cpp \
|
|
src/apiclient.cpp \
|
|
src/downloader.cpp \
|
|
src/opdsparser.cpp \
|
|
src/epub.cpp
|
|
|
|
HEADERS += \
|
|
src/settings.h \
|
|
src/apiclient.h \
|
|
src/downloader.h \
|
|
src/opdsparser.h \
|
|
src/epub.h
|
|
|
|
LIBS += -lz
|
|
|
|
OTHER_FILES += \
|
|
qml/harbour-calibreweb.qml \
|
|
qml/pages/*.qml \
|
|
qml/cover/*.qml \
|
|
rpm/harbour-calibreweb.spec \
|
|
rpm/harbour-calibreweb.desktop \
|
|
rpm/harbour-calibreweb.yaml
|
|
|
|
DISTFILES += $$OTHER_FILES
|
|
|
|
# Icone installate via make install (struttura standard Sailfish: icons/<size>/<name>.png)
|
|
icons86.path = /usr/share/icons/hicolor/86x86/apps
|
|
icons86.files = $$PWD/icons/86x86/harbour-calibreweb.png
|
|
icons108.path = /usr/share/icons/hicolor/108x108/apps
|
|
icons108.files = $$PWD/icons/108x108/harbour-calibreweb.png
|
|
INSTALLS += icons86 icons108
|