ostinato/shared.pri
Srivats P 97068b97e3 Use /usr/share/ostinato-controller/themes on Linux
This is because the Ostinato packaging reccomendation is to use
ostinato-agent and ostinato-controller package names. The ostinato
package is a meta package containing the aforementioned sub-packages
2022-07-29 20:54:14 +05:30

30 lines
658 B
Plaintext

#
# Qt qmake integration for installing files other than executables
# Author: Srivats P
#
# To install files other than executables, specify them in SHARED variable
# and include this file AFTER install.pri
#
# Example:
# SHARED = file1 file2
# include(install.pri)
# include(shared.pri)
#
macx {
shared.path = $${PREFIX}/Ostinato/Ostinato.app/Contents/SharedSupport/
} else: unix {
shared.path = $${PREFIX}/share/ostinato-controller/
} else {
shared.path = $${PREFIX}/bin
}
shared.files = $${SHARED}
INSTALLS += shared
# Themes - need a subdir inside shared
themes.files = $${THEMES}
themes.path = $${shared.path}/themes
INSTALLS += themes