X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=vnet%2Fconfigure.ac;h=b4b6723a6933f7fe91b50df4fad373a59aaa3ab5;hb=254b036dff8ac1ffc663788766de999a2837dc7e;hp=b46a67878366f99dc6f6138c721ad0cdcf363157;hpb=42f2006975c5a0ea58c835df4461213072f8813f;p=vpp.git diff --git a/vnet/configure.ac b/vnet/configure.ac index b46a6787836..b4b6723a693 100644 --- a/vnet/configure.ac +++ b/vnet/configure.ac @@ -32,6 +32,11 @@ AC_ARG_WITH(ipv6sr, [with_ipv6sr=0], [with_ipv6sr=1]) +AC_ARG_ENABLE(tests, + AC_HELP_STRING([--enable-tests], [Build unit tests]), + [enable_tests=1], + [enable_tests=0]) + AM_CONDITIONAL(WITH_DPDK, test "$with_dpdk" = "1") AC_SUBST(DPDK,[-DDPDK=${with_dpdk}]) @@ -47,4 +52,6 @@ AC_SUBST(VCGN,[-DVCGN=${with_vcgn}]) AM_CONDITIONAL(WITH_IPV6SR, test "$with_ipv6sr" = "1") AC_SUBST(IPV6SR,[-DIPV6SR=${with_ipv6sr}]) +AM_CONDITIONAL(ENABLE_TESTS, test "$enable_tests" = "1") + AC_OUTPUT([Makefile])