diff options
author | Holger Freyther <zecke@selfish.org> | 2005-08-14 14:44:26 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-14 14:44:26 +0000 |
commit | d1ce1ec2f684aa2bee1e1d90bdf7d1a315b7bfb1 (patch) | |
tree | be52c5b4b5573ce3cd6c0db1a77df8bd177b9370 /classes | |
parent | 0dd8629cbaad95b0fab1040e8ebd97bd19c6f210 (diff) |
Qt3 Native builds:
-Add a qt3e.bbclass similiar to the x11 bbclasses for Qt
-Use this class in uicmoc3-native, opie-lrelease-native,
opie-lupdate-native
-Stage the headers of uicmoc3 and the static library to
a dedicated qt3e staging directory
-Add two .inc files to share common data between the cvs
and 1.2.0 bbfile of opie-lupdate and opie-lrelease
Diffstat (limited to 'classes')
-rw-r--r-- | classes/qt3e.bbclass | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/classes/qt3e.bbclass b/classes/qt3e.bbclass new file mode 100644 index 0000000000..c34d7c04f5 --- /dev/null +++ b/classes/qt3e.bbclass @@ -0,0 +1,11 @@ +# +# override variables set by qmake-base to compile Qt/X11 apps +# +export QTDIR="${STAGING_DIR}/${HOST_SYS}/qte3" +export QTEDIR="${STAGING_DIR}/${HOST_SYS}/qte3" +export OE_QMAKE_UIC="${STAGING_BINDIR}/uic3" +export OE_QMAKE_MOC="${STAGING_BINDIR}/moc3" +export OE_QMAKE_CXXFLAGS="${CXXFLAGS} " +export OE_QMAKE_INCDIR_QT="${QTEDIR}/include" +export OE_QMAKE_LIBDIR_QT="${QTEDIR}/lib" +export OE_QMAKE_LIBS_QT="qte" |