Skip to content
Snippets Groups Projects
Unverified Commit fba2f0a3 authored by Adrien Béraud's avatar Adrien Béraud Committed by Simon Désaulniers
Browse files

autotools: disable doxygen by default

parent 6cd7fdb8
No related branches found
No related tags found
No related merge requests found
...@@ -14,8 +14,8 @@ AC_PROG_CXX ...@@ -14,8 +14,8 @@ AC_PROG_CXX
AM_PROG_AR AM_PROG_AR
dnl Check for Doxygen dnl Check for Doxygen
AC_ARG_ENABLE([doc], [AS_HELP_STRING([--disable-doc], [Disable documentation generation (doxygen)])]) AC_ARG_ENABLE([doc], AS_HELP_STRING([--enable-doc], [Enable documentation generation (doxygen)]))
AS_IF([test "x$enable_doc" != "xno"], [ AS_IF([test "x$enable_doc" = "xyes"], [
AC_CHECK_PROGS([DOXYGEN], [doxygen]) AC_CHECK_PROGS([DOXYGEN], [doxygen])
AS_IF([test -z "$DOXYGEN"], [AC_MSG_WARN([Doxygen not found - continuing without Doxygen support])]) AS_IF([test -z "$DOXYGEN"], [AC_MSG_WARN([Doxygen not found - continuing without Doxygen support])])
]) ])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment