DrStrangelove42 / DreamOfaRidiculousMan

Rogue-like game
MIT License
0 stars 0 forks source link

Portability in Doxyfile #5

Closed dbaelde closed 3 years ago

dbaelde commented 3 years ago

When I run make doc doxygen complains that ../Source does not exist. The generated doc is empty.

I initialiy assumed it was a portability issue (..\Source vs ../Source) but changing this does not fix the issue.

vbonczak commented 3 years ago

In fact in most OSes today, the UNIX path separator '/' is perfectly understood (even in templeOS), although Microsoft loves the backslash (or at least DOS, like \\Resource...). Thus the problem was unlikely to be about this, but it was for sure a problem of approach from Windows that was different than the one used in Linux : the working directory. From Windows Explorer, doxygen started from the directory containing doxyfile, and indeed for GNUMake, it was from the Makefile directory.