diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 8ba213d..2e73f91 100644 --- a/configure.in +++ b/configure.in @@ -45,6 +45,13 @@ if test x$with_pugl == xyes; then AC_SUBST(PUGL_LIBS) fi +AC_ARG_WITH(test, [ --with-test Build unit tests]) +if test x$with_test == xyes; then + AC_MSG_WARN([*** Building unittests!]) + AM_PATH_CPPUNIT(1.9.6) + AC_OUTPUT(test/Makefile) +fi + dnl ====================== dnl Compile LV2 plugin dnl ====================== |