2021-06-14 19:09:53 +02:00
|
|
|
# SPDX-License-Identifier: Unlicense
|
|
|
|
|
|
|
|
QT += multimedia qml quick quickcontrols2 svg widgets
|
|
|
|
CONFIG += embed_translations lrelease
|
|
|
|
DEFINES += GIT_VERSION=\\\"$$system(git -C "$$_PRO_FILE_PWD_" describe --always --tags)\\\"
|
|
|
|
|
2021-08-23 11:31:29 +02:00
|
|
|
SOURCES += main.cpp
|
|
|
|
HEADERS += io.h
|
2021-06-14 19:09:53 +02:00
|
|
|
RESOURCES += main.qrc icons.qrc
|
|
|
|
TRANSLATIONS += translations/fuzbal_sl.ts
|
2021-08-23 11:31:29 +02:00
|
|
|
|
|
|
|
unix {
|
|
|
|
isEmpty(PREFIX): PREFIX = /usr/local
|
|
|
|
target.path = $$PREFIX/bin
|
|
|
|
INSTALLS += target
|
|
|
|
}
|