qt5-native now compiles and installs

Disabled tests and exmaples in the native build. Also do_install
now installs the qmake host binary

Signed-off-by: Mikko Levonmaa <mikko.levonmaa@gmail.com>
This commit is contained in:
Mikko Levonmaa 2012-10-24 15:28:08 -07:00
parent c1d83958f5
commit 671410bb40
1 changed files with 8 additions and 0 deletions

View File

@ -39,6 +39,8 @@ EXTRA_OECONF = "-prefix ${prefix} \
-no-iconv \
-no-fast \
-silent \
-nomake examples \
-nomake tests \
-no-rpath"
do_configure() {
@ -47,3 +49,9 @@ do_configure() {
(echo o; echo yes) | ./configure ${EXTRA_OECONF} || die "Configuring qt failed. EXTRA_OECONF was ${EXTRA_OECONF}"
}
do_install() {
install -d ${D}${bindir}/
# Install only the qmake bin for now.
install -m 0755 ${S}/bin/qmake ${D}${bindir}/qmake
}