diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index a3e865f28..bade8bb30 100644 --- a/configure.ac +++ b/configure.ac @@ -205,6 +205,16 @@ fi AM_CONDITIONAL(HAVE_NOTHERE, test "x$have_nothere" = "xyes") dnl ----------------------------------------------------------- +dnl Tests +dnl ----------------------------------------------------------- +AC_ARG_ENABLE(tests, + AS_HELP_STRING([--enable-tests=@<:@no/yes@:>@], + [build tests]), , + enable_tests=no) + +AM_CONDITIONAL(HAVE_TESTS, test "x$enable_tests" = "xyes") + +dnl ----------------------------------------------------------- dnl Python Bindings dnl ----------------------------------------------------------- AC_ARG_ENABLE(python, @@ -271,4 +281,5 @@ AC_OUTPUT([ python/Makefile python/pyempathy/Makefile python/pyempathygtk/Makefile + tests/Makefile ]) |