diff options
author | Mingli Yu <mingli.yu@windriver.com> | 2018-05-10 23:23:00 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-15 10:00:32 +0100 |
commit | 53756087222a12646c4e63dba5c91df16c873111 (patch) | |
tree | 12d7f3142d8bc27193bb1a3234f33605d50a307f | |
parent | cbfabe9aeb2d1876a41119df126cdac3034762ab (diff) | |
download | openembedded-core-53756087222a12646c4e63dba5c91df16c873111.tar.gz openembedded-core-53756087222a12646c4e63dba5c91df16c873111.tar.bz2 openembedded-core-53756087222a12646c4e63dba5c91df16c873111.zip |
boost: add contract lib
Add the contract lib which implements contract
programming (a.k.a., Design by Contract or DbC) [1]
for the C++ programming language.
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-support/boost/boost.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc index b447897a0c..6984bee777 100644 --- a/meta/recipes-support/boost/boost.inc +++ b/meta/recipes-support/boost/boost.inc @@ -9,6 +9,7 @@ BOOST_LIBS = "\ atomic \ chrono \ container \ + contract \ date_time \ exception \ filesystem \ |