36 lines
819 B
Prolog
36 lines
819 B
Prolog
TARGET = KittehPlayer
|
|
|
|
TEMPLATE = app
|
|
QT += qml quickcontrols2 widgets core-private gui-private
|
|
SOURCES += src/main.cpp src/MpvPlayerBackend.cpp src/filesavedialog.cpp src/fileopendialog.cpp
|
|
|
|
CONFIG += release
|
|
#CONFIG+=qtquickcompiler
|
|
QT_CONFIG -= no-pkg-config
|
|
CONFIG += link_pkgconfig
|
|
PKGCONFIG += mpv
|
|
RESOURCES += src/qml/qml.qrc
|
|
|
|
unix {
|
|
isEmpty {
|
|
PREFIX = /usr
|
|
}
|
|
|
|
target.path = $$PREFIX/bin
|
|
|
|
desktop.files = KittehPlayer.desktop
|
|
desktop.path = $$PREFIX/share/applications/
|
|
icon.files += KittehPlayer.png
|
|
icon.path = $$PREFIX/share/icons/hicolor/256x256/apps/
|
|
|
|
INSTALLS += desktop
|
|
INSTALLS += icon
|
|
}
|
|
|
|
INSTALLS += target
|
|
|
|
HEADERS += src/MpvPlayerBackend.h src/filesavedialog.h src/fileopendialog.h
|
|
|
|
|
|
DISTFILES += KittehPlayer.desktop KittehPlayer.png README.md LICENSE.txt
|