c++warningsdocumentationdoxygen

doxygen source /test is not a readable file or directory... skipping


I'm getting a warning while compiling my documentation using Doxygen: source /test is not a readable file or directory... skipping., test folder is inside my package, and contains some .cpp files. Part of my Doxyfile.in is:

INPUT                  =  @CMAKE_CURRENT_SOURCE_DIR@/
RECURSIVE              = YES
EXAMPLE_PATH           = @srcdir@/test

Can you please tell me how can I get rid of this warning cleanly? thanks in advance.


EDIT:

OS: Ubuntu 20.04, Doxygen version: 1.8.17


Solution

  • I replaced this line: EXAMPLE_PATH = @srcdir@/test with EXAMPLE_PATH = , hence the warning disappeared.