mirror of
http://code.qt.io/yocto/meta-qt6.git
synced 2026-01-01 13:58:07 +00:00
The module description JSON files contain architecture-specific information. Therefore they should reside below INSTALL_ARCHDATADIR instead of INSTALL_DATADIR. Pick-to: 6.9 6.8 6.5 Fixes: QTBUG-132428 Change-Id: Ib6f2e8939e27f136ac6cb04e74b9d688c8600b2b Reviewed-by: Ari Parkkila <ari.parkkila@qt.io>
34 lines
1.2 KiB
Plaintext
34 lines
1.2 KiB
Plaintext
# Install locations:
|
|
|
|
# Executables [PREFIX/bin]
|
|
QT6_INSTALL_BINDIR ?= "${bindir}"
|
|
# Header files [PREFIX/include]
|
|
QT6_INSTALL_INCLUDEDIR ?= "${includedir}"
|
|
# Libraries [PREFIX/lib]
|
|
QT6_INSTALL_LIBDIR ?= "${libdir}"
|
|
# Arch-dependent data [PREFIX]
|
|
QT6_INSTALL_ARCHDATADIR ?= "${libdir}"
|
|
# Plugins [ARCHDATADIR/plugins]
|
|
QT6_INSTALL_PLUGINSDIR ?= "${libdir}/plugins"
|
|
# Helper programs [ARCHDATADIR/bin on Windows, ARCHDATADIR/libexec otherwise]
|
|
QT6_INSTALL_LIBEXECDIR ?= "${libexecdir}"
|
|
QT6_INSTALL_LIBEXECDIR:mingw32 ?= "${bindir}"
|
|
# QML2 imports [ARCHDATADIR/qml]
|
|
QT6_INSTALL_QMLDIR ?= "${libdir}/qml"
|
|
# "Arch-independent data [PREFIX]
|
|
QT6_INSTALL_DATADIR ?= "${datadir}"
|
|
# Documentation [DATADIR/doc]
|
|
QT6_INSTALL_DOCDIR ?= "${docdir}"
|
|
# Translations [DATADIR/translations]
|
|
QT6_INSTALL_TRANSLATIONSDIR ?= "${datadir}/translations"
|
|
# Settings used by Qt programs [PREFIX/etc/xdg]
|
|
QT6_INSTALL_SYSCONFDIR ?= "${sysconfdir}/xdg"
|
|
# Examples [PREFIX/examples]
|
|
QT6_INSTALL_EXAMPLESDIR ?= "${datadir}/examples"
|
|
# Tests [PREFIX/tests]
|
|
QT6_INSTALL_TESTSDIR ?= "${prefix}/tests"
|
|
# Module description files directory [ARCHDATADIR/modules]
|
|
QT6_INSTALL_DESCRIPTIONSDIR ?= "${libdir}/modules"
|
|
# Mkspecs files [PREFIX/mkspecs]
|
|
QT6_INSTALL_MKSPECSDIR ?= "${libdir}/mkspecs"
|