mirror of
https://github.com/bspeice/libcvautomation
synced 2024-12-04 13:58:11 -05:00
Change default build behavior to build with docs
This commit is contained in:
parent
9027a5b163
commit
1496b9192d
@ -64,13 +64,13 @@ if test "$with_examples" != "no"; then
|
||||
fi
|
||||
|
||||
# Check for doxygen
|
||||
AC_ARG_WITH(docs, [ --with-docs build documentation for libcvautomation @<:@default=no@:>@])
|
||||
AC_ARG_WITH(docs, [ --with-docs build documentation for libcvautomation @<:@default=yes@:>@])
|
||||
AC_ARG_ENABLE(man, [ --enable-man enable building the 'man' pages for libcvautomation
|
||||
only works if --with-docs is enabled @<:@default=enable@:>@])
|
||||
AC_ARG_ENABLE(tex, [ --enable-tex enable building the 'latex' pages for libcvautomation
|
||||
only works if --with-docs is enabled @<:@default=disable@:>@])
|
||||
|
||||
if test "$with_docs" == "yes"; then
|
||||
if test "$with_docs" != "no"; then
|
||||
AC_CHECK_PROGS([Doxygen], [doxygen], [missing])
|
||||
|
||||
if test "$Doxygen" == "missing"; then
|
||||
@ -79,11 +79,11 @@ if test "$with_docs" == "yes"; then
|
||||
enable_man="no"
|
||||
enable_tex="no"
|
||||
else
|
||||
AM_CONDITIONAL(BUILD_DOXYGEN, [test "$with_docs" == "yes"])
|
||||
AM_CONDITIONAL(BUILD_DOXYGEN, [test "$with_docs" != "no"])
|
||||
AC_CONFIG_FILES([docs/Doxyfile_library] [docs/Doxyfile_example])
|
||||
fi
|
||||
else
|
||||
AM_CONDITIONAL(BUILD_DOXYGEN, [test "$with_docs" == "yes"]) #false
|
||||
AM_CONDITIONAL(BUILD_DOXYGEN, [test "$with_docs" != "no"]) #false
|
||||
enable_man="no"
|
||||
enable_tex="no"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user