Skip to content
Snippets Groups Projects
Commit 926df85b authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Explicitly find graphviz if doxygen is enabled (ATLINFR-2883)

Temporary work-around to explicitly find graphviz in case the doc target
is enabled. This ensures that graphviz gets added to LD_LIBRARY_PATH,
which is required for running it. Once the FindGraphviz module is fixed
in atlasexternals we can remove this again.
parent 1b6e5461
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,11 @@ unset( _defaultUseFortran )
# Find the project that we depend on:
find_package( ${ATLAS_PROJECT} REQUIRED )
# Temporary fix for ATLINFR-2883:
if ( DOXYGEN_FOUND )
find_package( graphviz )
endif()
# Set up CTest:
atlas_ctest_setup()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment