mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-04 16:10:04 +00:00
Changes from the meta-openembedded version:
* Change the order of includes so that embedded takes precedence (ensuring
SRC_URI additions from qt-embedded.inc work)
* Specify -embedded in qt-embedded.inc
* Remove SRC_URI and S which should come from qt-${PV}.inc
* Remove QT_DIR_NAME and QT_LIBINFIX as these come from qt4e.bbclass
* Correct LICENSE
* Set DESCRIPTION instead of SUMMARY as SUMMARY will inherit by default
* Add qthelp-lib-qtclucene.patch (required to build)
* Whitespace fixes
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
19 lines
665 B
Plaintext
19 lines
665 B
Plaintext
DEPENDS_prepend = "${@["qt4-embedded ", ""][(bb.data.getVar('PN', d, 1)[:12] == 'qt4-embedded')]}"
|
|
|
|
inherit qmake2
|
|
|
|
QT_DIR_NAME = "qtopia"
|
|
QT_LIBINFIX = "E"
|
|
# override variables set by qmake-base to compile Qt/Embedded apps
|
|
#
|
|
export QMAKESPEC = "${STAGING_DATADIR}/${QT_DIR_NAME}/mkspecs/${TARGET_OS}-oe-g++"
|
|
export OE_QMAKE_INCDIR_QT = "${STAGING_INCDIR}/${QT_DIR_NAME}"
|
|
export OE_QMAKE_LIBDIR_QT = "${STAGING_LIBDIR}"
|
|
export OE_QMAKE_LIBS_QT = "qt"
|
|
export OE_QMAKE_LIBS_X11 = ""
|
|
export OE_QMAKE_EXTRA_MODULES = "network"
|
|
EXTRA_QMAKEVARS_PRE += " QT_LIBINFIX=${QT_LIBINFIX} "
|
|
|
|
# Qt4 uses atomic instructions not supported in thumb mode
|
|
ARM_INSTRUCTION_SET = "arm"
|