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-07 13:29:01 +0100 |
commit | f77ea95ba5cd337f01f2a1b4fe9466feb6af9440 (patch) | |
tree | 4362150078fd5e412757d1dd2d8f3b07ecd2ef3c /meta/recipes-devtools/cmake | |
parent | e1390c1ef85862b91b067ab24f3c06ca506155ad (diff) | |
download | openembedded-core-f77ea95ba5cd337f01f2a1b4fe9466feb6af9440.tar.gz openembedded-core-f77ea95ba5cd337f01f2a1b4fe9466feb6af9440.tar.bz2 openembedded-core-f77ea95ba5cd337f01f2a1b4fe9466feb6af9440.zip |
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.
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 = "\ -DENABLE_ACL=0 -DHAVE_ACL_LIBACL_H=0 \ -DHAVE_SYS_ACL_H=0 \ " + +do_compile[progress] = "percent" |