2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-03-07 11:18:38 +01:00
|
|
|
#
|
|
|
|
# qt5base
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-03-07 11:18:38 +01:00
|
|
|
|
2013-03-19 10:29:42 +01:00
|
|
|
QT5BASE_VERSION = $(QT5_VERSION)
|
2013-04-15 05:11:19 +02:00
|
|
|
QT5BASE_SITE = $(QT5_SITE)
|
2013-03-07 11:18:38 +01:00
|
|
|
QT5BASE_SOURCE = qtbase-opensource-src-$(QT5BASE_VERSION).tar.xz
|
|
|
|
|
|
|
|
QT5BASE_DEPENDENCIES = host-pkgconf zlib pcre
|
|
|
|
QT5BASE_INSTALL_STAGING = YES
|
|
|
|
|
|
|
|
# A few comments:
|
|
|
|
# * -no-pch to workaround the issue described at
|
|
|
|
# http://comments.gmane.org/gmane.comp.lib.qt.devel/5933.
|
|
|
|
# * -system-zlib because zlib is mandatory for Qt build, and we
|
|
|
|
# want to use the Buildroot packaged zlib
|
|
|
|
# * -system-pcre because pcre is mandatory to build Qt, and we
|
|
|
|
# want to use the one packaged in Buildroot
|
|
|
|
QT5BASE_CONFIGURE_OPTS += \
|
|
|
|
-optimized-qmake \
|
|
|
|
-no-cups \
|
|
|
|
-no-nis \
|
|
|
|
-no-iconv \
|
|
|
|
-system-zlib \
|
|
|
|
-system-pcre \
|
2015-08-26 17:06:18 +02:00
|
|
|
-no-pch \
|
|
|
|
-shared
|
2013-03-07 11:18:38 +01:00
|
|
|
|
2016-06-01 05:38:09 +02:00
|
|
|
# Uses libgbm from mesa3d
|
|
|
|
ifeq ($(BR2_PACKAGE_MESA3D_OPENGL_EGL),y)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -kms -gbm
|
|
|
|
QT5BASE_DEPENDENCIES += mesa3d
|
|
|
|
else
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -no-kms
|
|
|
|
endif
|
|
|
|
|
2013-03-07 11:18:40 +01:00
|
|
|
ifeq ($(BR2_ENABLE_DEBUG),y)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -debug
|
|
|
|
else
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -release
|
|
|
|
endif
|
|
|
|
|
2013-03-07 11:18:38 +01:00
|
|
|
QT5BASE_CONFIGURE_OPTS += -largefile
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5BASE_LICENSE_APPROVED),y)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -opensource -confirm-license
|
2016-03-21 12:00:12 +01:00
|
|
|
QT5BASE_LICENSE = GPLv3 or LGPLv2.1 with exception or LGPLv3, GFDLv1.3 (docs)
|
|
|
|
QT5BASE_LICENSE_FILES = LICENSE.GPLv3 LICENSE.LGPLv21 LGPL_EXCEPTION.txt LICENSE.LGPLv3 LICENSE.FDL
|
2013-03-07 11:18:38 +01:00
|
|
|
else
|
|
|
|
QT5BASE_LICENSE = Commercial license
|
|
|
|
QT5BASE_REDISTRIBUTE = NO
|
|
|
|
endif
|
|
|
|
|
2015-02-03 14:38:43 +01:00
|
|
|
QT5BASE_CONFIG_FILE = $(call qstrip,$(BR2_PACKAGE_QT5BASE_CONFIG_FILE))
|
|
|
|
|
|
|
|
ifneq ($(QT5BASE_CONFIG_FILE),)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -qconfig buildroot
|
|
|
|
endif
|
|
|
|
|
package/qt5base: add optional dependency on udev
Qt5 can optionally enable udev support, especially to enumerate input
devices dynamically. Without udev, devices are not properly enumerated,
and any device that is not present at launch time is never seen (there
is no support for hotplug, that is).
Currently, Qt5base has no explicit dependency on udev, so it will all
depend on the build order. Sometimes, a package that requires udev will
be built before qt5base and Qt5 will have support for udev, sometime no
such package is built before qt5base and Qt5 will not have support for
udev.
Add an explicit dependency on udev, but only if it is enabled.
Note: this only really requires libudev, but we do not yet have a
separate libudev; we still only have a udev provider (be it eudev or
systemd).
Signed-off-by: "Yann E. MORIN" <yann.morin@orange.com>
Cc: Cedric Chedaleux <cedric.chedaleux@orange.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
[Thomas: drop comment, as suggested by Arnout.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-06-23 09:05:15 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
|
|
|
|
QT5BASE_DEPENDENCIES += udev
|
|
|
|
endif
|
|
|
|
|
2013-05-28 11:05:37 +02:00
|
|
|
# Qt5 SQL Plugins
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5BASE_SQL),y)
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5BASE_MYSQL),y)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -plugin-sql-mysql -mysql_config $(STAGING_DIR)/usr/bin/mysql_config
|
2014-01-22 07:24:35 +01:00
|
|
|
QT5BASE_DEPENDENCIES += mysql
|
2013-05-28 11:05:37 +02:00
|
|
|
else
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -no-sql-mysql
|
|
|
|
endif
|
|
|
|
|
2014-08-13 16:05:41 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_QT5BASE_PSQL),y)
|
2015-02-19 23:04:41 +01:00
|
|
|
QT5BASE_CONFIGURE_OPTS += -plugin-sql-psql -psql_config $(STAGING_DIR)/usr/bin/pg_config
|
2014-08-13 16:05:41 +02:00
|
|
|
QT5BASE_DEPENDENCIES += postgresql
|
|
|
|
else
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -no-sql-psql
|
|
|
|
endif
|
|
|
|
|
2013-05-28 11:05:37 +02:00
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_SQLITE_QT),-plugin-sql-sqlite)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_SQLITE_SYSTEM),-system-sqlite)
|
|
|
|
QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_QT5BASE_SQLITE_SYSTEM),sqlite)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_SQLITE_NONE),-no-sql-sqlite)
|
|
|
|
endif
|
|
|
|
|
2013-03-07 11:18:39 +01:00
|
|
|
# We have to use --enable-linuxfb, otherwise Qt thinks that -linuxfb
|
|
|
|
# is to add a link against the "inuxfb" library.
|
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_GUI),-gui,-no-gui)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_WIDGETS),-widgets,-no-widgets)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_LINUXFB),--enable-linuxfb,-no-linuxfb)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_DIRECTFB),-directfb,-no-directfb)
|
|
|
|
QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_QT5BASE_DIRECTFB),directfb)
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5BASE_XCB),y)
|
2013-09-20 07:43:10 +02:00
|
|
|
QT5BASE_CONFIGURE_OPTS += -xcb -system-xkbcommon
|
2013-03-07 11:18:39 +01:00
|
|
|
QT5BASE_DEPENDENCIES += \
|
|
|
|
libxcb \
|
|
|
|
xcb-util-wm \
|
|
|
|
xcb-util-image \
|
|
|
|
xcb-util-keysyms \
|
2013-09-20 07:43:10 +02:00
|
|
|
xlib_libX11 \
|
|
|
|
libxkbcommon
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5BASE_WIDGETS),y)
|
|
|
|
QT5BASE_DEPENDENCIES += xlib_libXext
|
|
|
|
endif
|
2013-03-07 11:18:39 +01:00
|
|
|
else
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -no-xcb
|
|
|
|
endif
|
|
|
|
|
2014-07-19 19:33:24 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_QT5BASE_OPENGL_DESKTOP),y)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -opengl desktop
|
|
|
|
QT5BASE_DEPENDENCIES += libgl
|
|
|
|
else ifeq ($(BR2_PACKAGE_QT5BASE_OPENGL_ES2),y)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -opengl es2
|
|
|
|
QT5BASE_DEPENDENCIES += libgles
|
|
|
|
else
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -no-opengl
|
|
|
|
endif
|
|
|
|
|
2014-07-16 17:58:51 +02:00
|
|
|
QT5BASE_DEFAULT_QPA = $(call qstrip,$(BR2_PACKAGE_QT5BASE_DEFAULT_QPA))
|
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(QT5BASE_DEFAULT_QPA),-qpa $(QT5BASE_DEFAULT_QPA))
|
|
|
|
|
2015-07-28 11:06:25 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_QT5BASE_EGLFS),y)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -eglfs
|
|
|
|
QT5BASE_DEPENDENCIES += libegl
|
2013-03-19 10:29:35 +01:00
|
|
|
else
|
2014-07-19 19:33:24 +02:00
|
|
|
QT5BASE_CONFIGURE_OPTS += -no-eglfs
|
2013-03-19 10:29:35 +01:00
|
|
|
endif
|
|
|
|
|
2013-03-19 10:29:34 +01:00
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_OPENSSL),-openssl,-no-openssl)
|
|
|
|
QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_OPENSSL),openssl)
|
|
|
|
|
2013-03-19 10:29:36 +01:00
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_FONTCONFIG),-fontconfig,-no-fontconfig)
|
|
|
|
QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_QT5BASE_FONTCONFIG),fontconfig)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_GIF),,-no-gif)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_JPEG),-system-libjpeg,-no-libjpeg)
|
|
|
|
QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_QT5BASE_JPEG),jpeg)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_PNG),-system-libpng,-no-libpng)
|
|
|
|
QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_QT5BASE_PNG),libpng)
|
|
|
|
|
2013-03-19 10:29:37 +01:00
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_DBUS),-dbus,-no-dbus)
|
|
|
|
QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_QT5BASE_DBUS),dbus)
|
|
|
|
|
2013-10-28 01:29:27 +01:00
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_TSLIB),-tslib,-no-tslib)
|
|
|
|
QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_QT5BASE_TSLIB),tslib)
|
|
|
|
|
2013-03-19 10:29:38 +01:00
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_LIBGLIB2),-glib,-no-glib)
|
|
|
|
QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_LIBGLIB2),libglib2)
|
|
|
|
|
2013-03-19 10:29:39 +01:00
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_ICU),-icu,-no-icu)
|
|
|
|
QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_QT5BASE_ICU),icu)
|
|
|
|
|
2014-01-02 08:07:02 +01:00
|
|
|
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_EXAMPLES),-make,-nomake) examples
|
|
|
|
|
2015-10-21 10:06:29 +02:00
|
|
|
# gstreamer 0.10 support is broken in qt5multimedia
|
|
|
|
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE),y)
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -gstreamer 1.0
|
|
|
|
QT5BASE_DEPENDENCIES += gst1-plugins-base
|
|
|
|
else
|
|
|
|
QT5BASE_CONFIGURE_OPTS += -no-gstreamer
|
|
|
|
endif
|
|
|
|
|
2013-03-07 11:18:38 +01:00
|
|
|
# Build the list of libraries to be installed on the target
|
|
|
|
QT5BASE_INSTALL_LIBS_y += Qt5Core
|
2015-08-19 11:48:15 +02:00
|
|
|
QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_XCB) += Qt5XcbQpa
|
2013-03-07 11:18:38 +01:00
|
|
|
QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_NETWORK) += Qt5Network
|
|
|
|
QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_CONCURRENT) += Qt5Concurrent
|
|
|
|
QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_SQL) += Qt5Sql
|
|
|
|
QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_TEST) += Qt5Test
|
|
|
|
QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_XML) += Qt5Xml
|
2014-07-19 19:33:24 +02:00
|
|
|
QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_OPENGL_LIB) += Qt5OpenGL
|
2015-07-21 13:30:14 +02:00
|
|
|
QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_EGLFS) += Qt5EglDeviceIntegration
|
2013-03-07 11:18:38 +01:00
|
|
|
|
2013-03-07 11:18:39 +01:00
|
|
|
QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_GUI) += Qt5Gui
|
|
|
|
QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_WIDGETS) += Qt5Widgets
|
|
|
|
QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_PRINTSUPPORT) += Qt5PrintSupport
|
|
|
|
|
2013-03-19 10:29:37 +01:00
|
|
|
QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_DBUS) += Qt5DBus
|
|
|
|
|
2015-02-03 14:38:43 +01:00
|
|
|
ifneq ($(QT5BASE_CONFIG_FILE),)
|
|
|
|
define QT5BASE_CONFIGURE_CONFIG_FILE
|
|
|
|
cp $(QT5BASE_CONFIG_FILE) $(@D)/src/corelib/global/qconfig-buildroot.h
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2013-03-07 11:18:38 +01:00
|
|
|
define QT5BASE_CONFIGURE_CMDS
|
2015-11-24 22:21:49 +01:00
|
|
|
$(INSTALL) -m 0644 -D $(QT5BASE_PKGDIR)/qmake.conf \
|
|
|
|
$(@D)/mkspecs/devices/linux-buildroot-g++/qmake.conf
|
|
|
|
$(INSTALL) -m 0644 -D $(QT5BASE_PKGDIR)/qplatformdefs.h \
|
|
|
|
$(@D)/mkspecs/devices/linux-buildroot-g++/qplatformdefs.h
|
2015-02-03 14:38:43 +01:00
|
|
|
$(QT5BASE_CONFIGURE_CONFIG_FILE)
|
2013-03-07 11:18:38 +01:00
|
|
|
(cd $(@D); \
|
2015-10-25 21:00:41 +01:00
|
|
|
$(TARGET_MAKE_ENV) \
|
2013-03-07 11:18:38 +01:00
|
|
|
PKG_CONFIG="$(PKG_CONFIG_HOST_BINARY)" \
|
|
|
|
PKG_CONFIG_LIBDIR="$(STAGING_DIR)/usr/lib/pkgconfig" \
|
|
|
|
PKG_CONFIG_SYSROOT_DIR="$(STAGING_DIR)" \
|
|
|
|
MAKEFLAGS="$(MAKEFLAGS) -j$(PARALLEL_JOBS)" \
|
|
|
|
./configure \
|
|
|
|
-v \
|
|
|
|
-prefix /usr \
|
|
|
|
-hostprefix $(HOST_DIR)/usr \
|
2013-12-24 07:53:57 +01:00
|
|
|
-headerdir /usr/include/qt5 \
|
2013-03-07 11:18:38 +01:00
|
|
|
-sysroot $(STAGING_DIR) \
|
|
|
|
-plugindir /usr/lib/qt/plugins \
|
2014-01-02 08:07:02 +01:00
|
|
|
-examplesdir /usr/lib/qt/examples \
|
2013-03-07 11:18:38 +01:00
|
|
|
-no-rpath \
|
2014-01-02 08:07:02 +01:00
|
|
|
-nomake tests \
|
2013-03-07 11:18:38 +01:00
|
|
|
-device buildroot \
|
2014-09-16 14:58:18 +02:00
|
|
|
-device-option CROSS_COMPILE="$(TARGET_CROSS)" \
|
2015-04-30 17:12:24 +02:00
|
|
|
-device-option BR_COMPILER_CFLAGS="$(TARGET_CFLAGS) $(QT5BASE_EXTRA_CFLAGS)" \
|
|
|
|
-device-option BR_COMPILER_CXXFLAGS="$(TARGET_CXXFLAGS) $(QT5BASE_EXTRA_CFLAGS)" \
|
2013-03-07 11:18:38 +01:00
|
|
|
$(QT5BASE_CONFIGURE_OPTS) \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define QT5BASE_BUILD_CMDS
|
2015-10-25 21:00:41 +01:00
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
2013-03-07 11:18:38 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
define QT5BASE_INSTALL_STAGING_CMDS
|
2015-10-25 21:00:41 +01:00
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install
|
2013-03-07 11:18:38 +01:00
|
|
|
$(QT5_LA_PRL_FILES_FIXUP)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define QT5BASE_INSTALL_TARGET_LIBS
|
|
|
|
for lib in $(QT5BASE_INSTALL_LIBS_y); do \
|
2014-11-30 15:18:36 +01:00
|
|
|
cp -dpf $(STAGING_DIR)/usr/lib/lib$${lib}.so.* $(TARGET_DIR)/usr/lib || exit 1 ; \
|
2013-03-07 11:18:38 +01:00
|
|
|
done
|
|
|
|
endef
|
|
|
|
|
|
|
|
define QT5BASE_INSTALL_TARGET_PLUGINS
|
|
|
|
if [ -d $(STAGING_DIR)/usr/lib/qt/plugins/ ] ; then \
|
|
|
|
mkdir -p $(TARGET_DIR)/usr/lib/qt/plugins ; \
|
|
|
|
cp -dpfr $(STAGING_DIR)/usr/lib/qt/plugins/* $(TARGET_DIR)/usr/lib/qt/plugins ; \
|
|
|
|
fi
|
|
|
|
endef
|
|
|
|
|
2013-03-19 10:29:41 +01:00
|
|
|
define QT5BASE_INSTALL_TARGET_FONTS
|
|
|
|
if [ -d $(STAGING_DIR)/usr/lib/fonts/ ] ; then \
|
|
|
|
mkdir -p $(TARGET_DIR)/usr/lib/fonts ; \
|
|
|
|
cp -dpfr $(STAGING_DIR)/usr/lib/fonts/* $(TARGET_DIR)/usr/lib/fonts ; \
|
|
|
|
fi
|
|
|
|
endef
|
|
|
|
|
2014-01-02 08:07:02 +01:00
|
|
|
define QT5BASE_INSTALL_TARGET_EXAMPLES
|
|
|
|
if [ -d $(STAGING_DIR)/usr/lib/qt/examples/ ] ; then \
|
|
|
|
mkdir -p $(TARGET_DIR)/usr/lib/qt/examples ; \
|
|
|
|
cp -dpfr $(STAGING_DIR)/usr/lib/qt/examples/* $(TARGET_DIR)/usr/lib/qt/examples ; \
|
|
|
|
fi
|
|
|
|
endef
|
|
|
|
|
2014-12-03 22:41:29 +01:00
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
2013-04-07 11:57:16 +02:00
|
|
|
define QT5BASE_INSTALL_TARGET_CMDS
|
|
|
|
$(QT5BASE_INSTALL_TARGET_FONTS)
|
2014-01-02 08:07:02 +01:00
|
|
|
$(QT5BASE_INSTALL_TARGET_EXAMPLES)
|
2013-04-07 11:57:16 +02:00
|
|
|
endef
|
|
|
|
else
|
2013-03-07 11:18:38 +01:00
|
|
|
define QT5BASE_INSTALL_TARGET_CMDS
|
|
|
|
$(QT5BASE_INSTALL_TARGET_LIBS)
|
|
|
|
$(QT5BASE_INSTALL_TARGET_PLUGINS)
|
2013-03-19 10:29:41 +01:00
|
|
|
$(QT5BASE_INSTALL_TARGET_FONTS)
|
2014-01-02 08:07:02 +01:00
|
|
|
$(QT5BASE_INSTALL_TARGET_EXAMPLES)
|
2013-03-07 11:18:38 +01:00
|
|
|
endef
|
2013-04-07 11:57:16 +02:00
|
|
|
endif
|
2013-03-07 11:18:38 +01:00
|
|
|
|
|
|
|
$(eval $(generic-package))
|