mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-26 10:33:15 +03:00
70 lines
1.7 KiB
Prolog
70 lines
1.7 KiB
Prolog
TEMPLATE = app
|
|
QT += qml quick widgets
|
|
CONFIG += c++11
|
|
SOURCES += main.cpp systemtray.cpp
|
|
HEADERS += screenshot.h systemtray.h
|
|
|
|
# This is the internal verson number, Windows requires 4 digits.
|
|
win32|win64 {
|
|
VERSION = 4.3.5.0
|
|
} else {
|
|
VERSION = 4.3.5
|
|
}
|
|
# This is the version shown on the About page
|
|
DEFINES += APP_VERSION=\\\"4.3.5\\\"
|
|
|
|
message(Version of this build: $$VERSION)
|
|
|
|
buildqrc.commands = python build_qrc.py ${QMAKE_FILE_IN}
|
|
buildqrc.input = QRC_JSON
|
|
buildqrc.output = ${QMAKE_FILE_IN_BASE}.qrc
|
|
buildqrc.variable_out = RESOURCES
|
|
|
|
QMAKE_STRIPFLAGS_LIB += --strip-unneeded
|
|
|
|
QMAKE_EXTRA_COMPILERS += buildqrc
|
|
QRC_JSON = resources.json
|
|
|
|
# Generate first time
|
|
system(python build_qrc.py resources.json)
|
|
|
|
# Install python dependencies with pip on mac and win
|
|
win32|macx {
|
|
pip.target = pymodules
|
|
QMAKE_EXTRA_TARGETS += pip
|
|
PRE_TARGETDEPS += pymodules
|
|
QMAKE_CLEAN += -r pymodules
|
|
}
|
|
macx {
|
|
pip.commands = python3 -m venv pymodules && source pymodules/bin/activate && pip3 install -r requirements.txt && deactivate
|
|
}
|
|
!macx {
|
|
pip.commands = pip3 install -r requirements.txt --target pymodules
|
|
}
|
|
|
|
# Default rules for deployment.
|
|
include(deployment.pri)
|
|
|
|
# Icon file
|
|
RC_ICONS = resources/icons/yubioath.ico
|
|
|
|
# Mac specific configuration
|
|
macx {
|
|
ICON = resources/icons/yubioath.icns
|
|
QMAKE_INFO_PLIST = resources/mac/Info.plist.in
|
|
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.9 # Mavericks
|
|
QMAKE_POST_LINK += cp -rnf pymodules/lib/python3*/site-packages/ yubioath-desktop.app/Contents/MacOS/pymodules/
|
|
}
|
|
|
|
# For generating a XML file with all strings.
|
|
lupdate_only {
|
|
SOURCES = qml/*.qml \
|
|
qml/slot/*.qml
|
|
}
|
|
|
|
|
|
DISTFILES += \
|
|
py/* \
|
|
py/qr/* \
|
|
qml/*
|