39 lines
881 B
Prolog
39 lines
881 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
|
|
|
|
DISTFILES += $$OTHER_FILES
|
|
|
|
# Icone installate via make install (path assoluti = robusti rispetto al tar sorgente)
|
|
icons86.path = /usr/share/icons/hicolor/86x86/apps
|
|
icons86.files = $$PWD/icons/harbour-calibreweb.png
|
|
icons108.path = /usr/share/icons/hicolor/108x108/apps
|
|
icons108.files = $$PWD/icons/harbour-calibreweb-108.png
|
|
INSTALLS += icons86 icons108
|