Explorar el Código

Disable cppunit tests by default, honor --enable-cppunit

tags/v0.99.beta20
Louis Sautier hace 7 años
padre
commit
83bf3b120f
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 2CDF7FDA862B29FB
Se han modificado 1 ficheros con 4 adiciones y 2 borrados
  1. +4
    -2
      configure.ac

+ 4
- 2
configure.ac Ver fichero

@@ -557,8 +557,10 @@ AM_CONDITIONAL(BUILD_DOCUMENTATION, test "${DOXYGEN}" != "no")
AM_CONDITIONAL(USE_LATEX, test "${LATEX}" != "no")

# Use cppunit for unit tests?
PKG_CHECK_MODULES(CPPUNIT, cppunit, [CPPUNIT="yes"], [CPPUNIT="no"])
AM_CONDITIONAL(USE_CPPUNIT, test "$CPPUNIT" = "yes")
AS_IF([test "x$enable_cppunit" = "xyes"], [
PKG_CHECK_MODULES([CPPUNIT], [cppunit])
])
AM_CONDITIONAL([USE_CPPUNIT], [test "x$enable_cppunit" = "xyes"])

# Use zzuf for fuzzing tests?
ZZUF="no"


Cargando…
Cancelar
Guardar