mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
This is the result of running the following over the metadata: sed \ -e 's:bb.data.\(setVar([^,()]*,[^,()]*\), *\([^ )]*\) *):\2.\1):g' \ -e 's:bb.data.\(setVarFlag([^,()]*,[^,()]*,[^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^() ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -i `grep -ril bb.data *` (From OE-Core rev: b22831fd63164c4db9c0b72934d7d734a6585251) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
656 B
Plaintext
19 lines
656 B
Plaintext
DEPENDS_prepend = "${@["qt4-embedded ", ""][(d.getVar('PN', 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"
|