899a815414
This will allow us to drop gtk2 support from qtbase in future, while still providing the gtk2 style for those who want to use it. Also with moving to qtstyleplugins, the code can be simplified because we can directly link to libraries we need, instead of using QLibrary. [ChangeLog][QtWidgets] Remove QGtkStyle, it is now provided in qtstyleplugins repository. Change-Id: I6221b1a513d7fda32e080f3ca159b0b2f8a8f246 Reviewed-by: Timo Jyrinki <timo.jyrinki@canonical.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> Reviewed-by: Jens Bache-Wiig <jensbw@gmail.com> Reviewed-by: Lars Knoll <lars.knoll@theqtcompany.com> Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com> Reviewed-by: Lisandro Damián Nicanor Pérez Meyer <perezmeyer@gmail.com>
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
#
|
|
# qmake configuration for the Freescale iMX53 board
|
|
#
|
|
# This mkspec is based and tested on the Yocto Project's Poky Distribution
|
|
# with libEGL.so from Freescale without the X11 dependency.
|
|
#
|
|
# This mkspec is tested with a framebuffer (eglfs) configuration
|
|
#
|
|
# A typical configure line looks like:
|
|
#
|
|
# export PATH=/opt/imx53qsb/x86_64-linux/usr/bin/armv7a-vfp-neon-poky-linux-gnueabi:$PATH
|
|
#
|
|
# ./configure -prefix /usr/local/qt5-imx53 -hostprefix /opt/imx53qsb/x86_64-linux/usr/local/qt5-imx53 -release -device linux-imx53qsb-g++
|
|
# -opensource -confirm-license -device-option CROSS_COMPILE=arm-poky-linux-gnueabi- -sysroot /opt/imx53qsb/sysroot
|
|
# -eglfs -no-pch -opengl es2 -no-xcb -silent
|
|
|
|
include(../common/linux_device_pre.conf)
|
|
|
|
QMAKE_LIBS_EGL += -lEGL
|
|
QMAKE_LIBS_OPENGL_ES2 += -lGLESv2 -lEGL
|
|
QMAKE_LIBS_OPENVG += -lOpenVG -lEGL
|
|
|
|
IMX5_CFLAGS = -march=armv7-a -mfpu=neon -DLINUX=1 -DEGL_API_FB=1 -Wno-psabi
|
|
QMAKE_CFLAGS += $$IMX5_CFLAGS
|
|
QMAKE_CXXFLAGS += $$IMX5_CFLAGS
|
|
|
|
include(../common/linux_arm_device_post.conf)
|
|
|
|
load(qt_config)
|