Don't build examples when variant==release

This commit is contained in:
Vinnie Falco
2019-02-26 11:07:39 -08:00
parent 15cd69514d
commit 26f9cfb70a

View File

@@ -112,7 +112,7 @@ function build_bjam ()
toolset=$TOOLSET \
variant=$VARIANT \
-j${JOBS}
else
elif [[ $VARIANT == "debug" ]]; then
b2 \
define=BOOST_COROUTINES_NO_DEPRECATION_WARNING=1 \
cxxstd=$CXXSTD \
@@ -121,6 +121,14 @@ function build_bjam ()
toolset=$TOOLSET \
variant=$VARIANT \
-j${JOBS}
else
b2 \
define=BOOST_COROUTINES_NO_DEPRECATION_WARNING=1 \
cxxstd=$CXXSTD \
libs/beast/test//fat-tests \
toolset=$TOOLSET \
variant=$VARIANT \
-j${JOBS}
fi
}