mirror of
https://git.yoctoproject.org/poky
synced 2026-03-05 06:49:39 +01:00
cmake outputs percentage complete as part of its compilation process, so we can enable BitBake's new progress scanning for do_compile here. (From OE-Core rev: f77ea95ba5cd337f01f2a1b4fe9466feb6af9440) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
410 B
BlitzBasic
19 lines
410 B
BlitzBasic
require cmake.inc
|
|
inherit native
|
|
|
|
# Using cmake's internal libarchive, so some dependencies are needed
|
|
DEPENDS += "bzip2-native zlib-native"
|
|
|
|
SRC_URI += "\
|
|
file://cmlibarchive-disable-ext2fs.patch \
|
|
"
|
|
|
|
# Disable ccmake since we don't depend on ncurses
|
|
CMAKE_EXTRACONF = "\
|
|
-DBUILD_CursesDialog=0 \
|
|
-DENABLE_ACL=0 -DHAVE_ACL_LIBACL_H=0 \
|
|
-DHAVE_SYS_ACL_H=0 \
|
|
"
|
|
|
|
do_compile[progress] = "percent"
|