add doxygen to the build system
configure tests for it, make runs it, make install copies the generated html
This commit is contained in:
parent
c7bab32109
commit
6cabb3e301
16
configure.ac
16
configure.ac
@ -239,6 +239,12 @@ AC_PROG_INSTALL
|
|||||||
AC_PROG_LN_S
|
AC_PROG_LN_S
|
||||||
AM_WITH_DMALLOC
|
AM_WITH_DMALLOC
|
||||||
|
|
||||||
|
AC_CHECK_PROGS([DOXYGEN], [doxygen])
|
||||||
|
if test -z "$DOXYGEN"; then
|
||||||
|
AC_MSG_WARN([doxygen not found; C++ docs will not be generated])
|
||||||
|
fi
|
||||||
|
AM_CONDITIONAL([HAVE_DOXYGEN], [test -n "$DOXYGEN"])
|
||||||
|
|
||||||
# we need a fully expanded version of $libdir
|
# we need a fully expanded version of $libdir
|
||||||
# without this we get something like
|
# without this we get something like
|
||||||
# define VIPS_LIBDIR ${exec_prefix}/lib
|
# define VIPS_LIBDIR ${exec_prefix}/lib
|
||||||
@ -248,11 +254,11 @@ test x"$exec_prefix" = x"NONE" && exec_prefix='${prefix}'
|
|||||||
|
|
||||||
# set $expanded_value to the fully-expanded value of the argument
|
# set $expanded_value to the fully-expanded value of the argument
|
||||||
expand () {
|
expand () {
|
||||||
eval expanded_value=$1
|
eval expanded_value=$1
|
||||||
|
|
||||||
if test x"$expanded_value" != x"$1"; then
|
if test x"$expanded_value" != x"$1"; then
|
||||||
expand "$expanded_value"
|
expand "$expanded_value"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
expand $libdir
|
expand $libdir
|
||||||
@ -1345,6 +1351,7 @@ AC_CONFIG_FILES([
|
|||||||
libvips/mosaicing/Makefile
|
libvips/mosaicing/Makefile
|
||||||
libvips/create/Makefile
|
libvips/create/Makefile
|
||||||
libvips/resample/Makefile
|
libvips/resample/Makefile
|
||||||
|
cplusplus/Doxyfile
|
||||||
cplusplus/include/Makefile
|
cplusplus/include/Makefile
|
||||||
cplusplus/include/vips/Makefile
|
cplusplus/include/vips/Makefile
|
||||||
cplusplus/Makefile
|
cplusplus/Makefile
|
||||||
@ -1379,6 +1386,7 @@ gobject introspection: $found_introspection
|
|||||||
enable radiance support: $with_radiance
|
enable radiance support: $with_radiance
|
||||||
enable analyze support: $with_analyze
|
enable analyze support: $with_analyze
|
||||||
enable PPM support: $with_ppm
|
enable PPM support: $with_ppm
|
||||||
|
generate C++ docs: $DOXYGEN
|
||||||
|
|
||||||
* optional dependencies
|
* optional dependencies
|
||||||
use fftw3 for FFT: $with_fftw
|
use fftw3 for FFT: $with_fftw
|
||||||
|
2
cplusplus/.gitignore
vendored
2
cplusplus/.gitignore
vendored
@ -1 +1,3 @@
|
|||||||
html
|
html
|
||||||
|
Doxyfile
|
||||||
|
doxygen.stamp
|
||||||
|
@ -38,7 +38,7 @@ PROJECT_NAME = "vips-cpp"
|
|||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = "8.11"
|
PROJECT_NUMBER = "@VIPS_MAJOR_VERSION@.@VIPS_MINOR_VERSION@"
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer a
|
# for a project that appears at the top of each page and should give viewer a
|
@ -28,8 +28,24 @@ vips-operators.cpp:
|
|||||||
echo "// this file is generated automatically, do not edit!" >> vips-operators.cpp; \
|
echo "// this file is generated automatically, do not edit!" >> vips-operators.cpp; \
|
||||||
./gen-operators.py -g cpp >> vips-operators.cpp
|
./gen-operators.py -g cpp >> vips-operators.cpp
|
||||||
|
|
||||||
|
if HAVE_DOXYGEN
|
||||||
|
|
||||||
|
html_DATA = html
|
||||||
|
|
||||||
|
html: doxygen.stamp
|
||||||
|
|
||||||
|
doxygen.stamp: Doxyfile
|
||||||
|
$(DOXYGEN) $^
|
||||||
|
touch doxygen.stamp
|
||||||
|
|
||||||
|
install-htmlDATA:
|
||||||
|
-mkdir -p $(DESTDIR)$(htmldir)
|
||||||
|
-cp -r html $(DESTDIR)$(htmldir)
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
README \
|
README \
|
||||||
vips-operators.cpp \
|
vips-operators.cpp \
|
||||||
Doxyfile \
|
Doxyfile.in \
|
||||||
gen-operators.py
|
gen-operators.py
|
||||||
|
Loading…
Reference in New Issue
Block a user