Skip to content

Commit

Permalink
Add additional search paths for doxygen on Windows
Browse files Browse the repository at this point in the history
`find_program(DOXYGEN doxygen)` didn't find the executable automatically even if I installed Doxygen on Windows. Therefore, I added some additional search paths.
  • Loading branch information
hwhsu1231 authored and vitaut committed Jul 19, 2022
1 parent 371f9c7 commit c48be43
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doc/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
find_program(DOXYGEN doxygen)
find_program(DOXYGEN doxygen
PATHS "$ENV{ProgramFiles}/doxygen/bin"
"$ENV{ProgramFiles\(x86\)}/doxygen/bin")
if (NOT DOXYGEN)
message(STATUS "Target 'doc' disabled (requires doxygen)")
return ()
Expand Down

0 comments on commit c48be43

Please sign in to comment.