-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,11 @@ project( | |
# Doxygen configuration | ||
############################################################################ | ||
# Locate PlantUML JAR file in the environment | ||
find_path(PLANTUML_JAR_PATH NAMES plantuml.jar HINTS "/usr/share/plantuml" "C:/Program Files/PlantUML" "C:/ProgramData/chocolatey/lib/plantuml/tools" "/usr/local/Cellar/[email protected]/1.2021.13/libexec" REQUIRED) | ||
find_path(PLANTUML_JAR_PATH NAMES plantuml.jar HINTS "/usr/share/plantuml" "C:/Program Files/PlantUML" "C:/ProgramData/chocolatey/lib/plantuml/tools" "/usr/local/Cellar/[email protected]/1.2021.13/libexec") | ||
if(PLANTUML_JAR_PATH-Notfound) | ||
message(STATUS "PlantUML JAR file not found. Will not build the plantuml example") | ||
return() | ||
endif() | ||
|
||
# Locate Doxygen in the environment. This will set DOXYGEN_FOUND variable | ||
# as a result. When Doxygen is found, DOXYGEN_VERSION variable will be | ||
|