2014-01-05 20:58:25 +00:00
|
|
|
# The name of your app.
|
|
|
|
# NOTICE: name defined in TARGET has a corresponding QML filename.
|
|
|
|
# If name defined in TARGET is changed, following needs to be
|
|
|
|
# done to match new name:
|
|
|
|
# - corresponding QML filename must be changed
|
|
|
|
# - desktop icon filename must be changed
|
|
|
|
# - desktop filename must be changed
|
|
|
|
# - icon definition filename in desktop file must be changed
|
|
|
|
TARGET = harbour-sailotp
|
|
|
|
|
2014-02-02 13:43:22 +00:00
|
|
|
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
|
|
|
|
DEFINES += APP_BUILDNUM=\\\"$$RELEASE\\\"
|
|
|
|
|
2014-01-05 20:58:25 +00:00
|
|
|
CONFIG += sailfishapp
|
|
|
|
|
2014-02-02 13:43:22 +00:00
|
|
|
SOURCES += src/harbour-sailotp.cpp \
|
|
|
|
src/fileio.cpp
|
2014-01-05 20:58:25 +00:00
|
|
|
|
|
|
|
OTHER_FILES += qml/harbour-sailotp.qml \
|
|
|
|
qml/cover/CoverPage.qml \
|
|
|
|
rpm/harbour-sailotp.spec \
|
|
|
|
rpm/harbour-sailotp.yaml \
|
|
|
|
harbour-sailotp.desktop \
|
|
|
|
qml/pages/MainView.qml \
|
|
|
|
qml/pages/AddOTP.qml \
|
|
|
|
qml/pages/About.qml \
|
|
|
|
qml/lib/storage.js \
|
|
|
|
qml/lib/crypto.js \
|
|
|
|
qml/lib/sha.js \
|
2014-02-02 13:43:22 +00:00
|
|
|
qml/sailotp.png \
|
|
|
|
qml/pages/ExportPage.qml \
|
|
|
|
qml/lib/gibberish-aes.js \
|
|
|
|
qml/components/NotifyBanner.qml
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
src/fileio.h
|
2014-01-05 20:58:25 +00:00
|
|
|
|
2014-02-09 09:59:50 +00:00
|
|
|
i18n.files = i18n/*.qm
|
|
|
|
i18n.path = /usr/share/$${TARGET}/i18n
|
|
|
|
|
|
|
|
INSTALLS += i18n
|
|
|
|
|
|
|
|
lupdate_only {
|
|
|
|
SOURCES = qml/*.qml \
|
|
|
|
qml/pages/*.qml \
|
|
|
|
qml/covers/*.qml \
|
|
|
|
qml/components/*.qml
|
|
|
|
|
|
|
|
TRANSLATIONS = i18n/de.ts \
|
|
|
|
i18n/en.ts
|
|
|
|
}
|
|
|
|
|