Compiling Qt apps with qmake using Yocto if really straight forward. The following example is based on poky/warrior and my small bit counting tool:
1 2 3 4 5 6 7 8 9 10 11 12 |
SUMMARY = "Registerer is a Hex/Bin/Dec converter aiming embedded developers " HOMEPAGE = "http://blog.mdb977.de/" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=39bba7d2cf0ba1036f2a6e2be52fe3f0" inherit qmake5 DEPENDS = "qtbase" SRC_URI = "git://github.com/MikeBergmann/Registerer.git;protocol=https" SRCREV = "e3c52c9aa8b6fa18fcf0caad038da81f3e56f313" S = "${WORKDIR}/git" |
Doing the same using CMake, one may think inheriting cmake instead of qmake5 should be enough. Unfortunately, this is not true and leads to the[…]