#372 closed defect (fixed)
version.h is not found by doxygen (when using VPATH)
Reported by: | Peter | Owned by: | Jari Häkkinen |
---|---|---|---|
Priority: | minor | Milestone: | yat 0.5 |
Component: | build | Version: | trunk |
Keywords: | Cc: |
Description
Doxygen only look for src in $(top_srsdir)/yat
. However, version.h
is located in $(top_builddir)/yat/utility
because it is created by configure
.
One could add $(top_builddir)/yat/
to Doxygen INPUT
, but I'm not sure that will be perfect because of two things:
- If $(top_builddir) equals $(top_srcdir), how does Doxygen handle that repeat? (Perhaps check for that in configure??? and create a variable
DX_INPUT
- The other thing is that the
#include <yat/utility/version.h>
will not be correct anymore, since the file is located inbuilddir/yat/utility
.
Change History (3)
comment:1 Changed 15 years ago by
comment:3 Changed 15 years ago by
Milestone: | yat 0.x+ → yat 0.5 |
---|
Note: See
TracTickets for help on using
tickets.
This gives an annoying warning in "
make distcheck
". Why is doxygen called in distcheck? Is it possible to get rid of the warning or at least get rid of the call to doxygen indistcheck
?