diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-06-24 00:06:58 +1200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-08 09:57:23 +0100 |
commit | 4ebe0e1175c4074fe6c5be9bbf6a1cdd41e7f7ee (patch) | |
tree | 4c9d4031babbb266492bd99dd09ccbc3921c4e8b /meta/recipes-devtools/cmake | |
parent | a702c68c5bd7ab25d74d861bb0dc88249d4d742e (diff) | |
download | poky-4ebe0e1175c4074fe6c5be9bbf6a1cdd41e7f7ee.tar.gz |
classes/cmake: enable progress for do_compile
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>
Diffstat (limited to 'meta/recipes-devtools/cmake')
-rw-r--r-- | meta/recipes-devtools/cmake/cmake-native_3.5.2.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/cmake/cmake-native_3.5.2.bb b/meta/recipes-devtools/cmake/cmake-native_3.5.2.bb index cb4e749d7a..33930fbb9c 100644 --- a/meta/recipes-devtools/cmake/cmake-native_3.5.2.bb +++ b/meta/recipes-devtools/cmake/cmake-native_3.5.2.bb | |||
@@ -14,3 +14,5 @@ CMAKE_EXTRACONF = "\ | |||
14 | -DENABLE_ACL=0 -DHAVE_ACL_LIBACL_H=0 \ | 14 | -DENABLE_ACL=0 -DHAVE_ACL_LIBACL_H=0 \ |
15 | -DHAVE_SYS_ACL_H=0 \ | 15 | -DHAVE_SYS_ACL_H=0 \ |
16 | " | 16 | " |
17 | |||
18 | do_compile[progress] = "percent" | ||