77 lines
2.1 KiB
Makefile
77 lines
2.1 KiB
Makefile
################################################################################
|
|
#
|
|
# qt6tools
|
|
#
|
|
################################################################################
|
|
|
|
QT6TOOLS_VERSION = $(QT6_VERSION)
|
|
QT6TOOLS_SITE = $(QT6_SITE)
|
|
QT6TOOLS_SOURCE = qttools-$(QT6_SOURCE_TARBALL_PREFIX)-$(QT6TOOLS_VERSION).tar.xz
|
|
QT6TOOLS_INSTALL_STAGING = YES
|
|
QT6TOOLS_SUPPORTS_IN_SOURCE_BUILD = NO
|
|
|
|
QT6TOOLS_CMAKE_BACKEND = ninja
|
|
|
|
QT6TOOLS_LICENSE = \
|
|
BSD-3-Clause (examples), \
|
|
BSD-3-Clause (corecon), \
|
|
BSL-1.0 (catch), \
|
|
LGPL-3.0 or GPL-3.0 or GPL-2.0, \
|
|
GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
QT6TOOLS_LICENSE_FILES = \
|
|
LICENSES/BSD-3-Clause.txt \
|
|
LICENSES/BSL-1.0.txt \
|
|
LICENSES/GPL-2.0-only.txt \
|
|
LICENSES/GPL-3.0-only.txt \
|
|
LICENSES/LGPL-3.0-only.txt \
|
|
LICENSES/Qt-GPL-exception-1.0.txt
|
|
|
|
QT6TOOLS_CONF_OPTS = \
|
|
-DFEATURE_assistant=OFF \
|
|
-DFEATURE_designer=OFF \
|
|
-DFEATURE_linguist=OFF \
|
|
-DQT_HOST_PATH=$(HOST_DIR) \
|
|
-DBUILD_WITH_PCH=OFF \
|
|
-DQT_BUILD_EXAMPLES=OFF \
|
|
-DQT_BUILD_TESTS=OFF
|
|
|
|
# Disable clang support in qt6tools for now, as version 17 is needed:
|
|
# https://code.qt.io/cgit/qt/qttools.git/tree/.cmake.conf?h=6.8.1
|
|
QT6TOOLS_CONF_OPTS += -DFEATURE_clang=OFF
|
|
|
|
QT6TOOLS_DEPENDENCIES = \
|
|
qt6base \
|
|
host-qt6tools
|
|
|
|
ifeq ($(BR2_PACKAGE_QT6DECLARATIVE),y)
|
|
QT6TOOLS_DEPENDENCIES += qt6declarative
|
|
endif
|
|
|
|
HOST_QT6TOOLS_CONF_OPTS = \
|
|
-DFEATURE_assistant=OFF \
|
|
-DFEATURE_designer=OFF \
|
|
-DQT_BUILD_EXAMPLES=OFF \
|
|
-DQT_BUILD_TESTS=OFF
|
|
|
|
# Disable clang support in qt6tools for now, as version 17 is needed:
|
|
# https://code.qt.io/cgit/qt/qttools.git/tree/.cmake.conf?h=6.8.1
|
|
HOST_QT6TOOLS_CONF_OPTS += -DFEATURE_clang=OFF
|
|
|
|
HOST_QT6TOOLS_DEPENDENCIES = host-qt6base
|
|
|
|
ifeq ($(BR2_PACKAGE_HOST_QT6TOOLS_LINGUIST_TOOLS),y)
|
|
HOST_QT6TOOLS_CONF_OPTS += -DFEATURE_linguist=ON
|
|
# When we have qt6declarative for the target, we need to build the
|
|
# linguist tool with host-qt6declarative support so that it handles
|
|
# QML/JS files
|
|
ifeq ($(BR2_PACKAGE_QT6DECLARATIVE),y)
|
|
HOST_QT6TOOLS_DEPENDENCIES += host-qt6declarative
|
|
endif
|
|
else
|
|
HOST_QT6TOOLS_CONF_OPTS += -DFEATURE_linguist=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|
|
$(eval $(host-cmake-package))
|