Преглед изворни кода

Merge pull request #27 from sbraz/cppunit

Disable cppunit  tests by default, honor --enable-cppunit
tags/v0.99.beta20
Sam Hocevar GitHub пре 3 година
родитељ
комит
e972db074f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 измењених фајлова са 4 додато и 2 уклоњено
  1. +4
    -2
      configure.ac

+ 4
- 2
configure.ac Прегледај датотеку

@@ -571,8 +571,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"


Loading…
Откажи
Сачувај