diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-10-16 14:47:18 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-10-16 14:47:18 (GMT) |
commit | 641a0ad878e97485dbc02b9344aa72edd2a4f24a (patch) | |
tree | dd604d2f736e45cce2f268725e702efe46eee93c /Modules/FindDoxygen.cmake | |
parent | 2071291956042573868449463e5cbc562b1cbeda (diff) | |
download | CMake-641a0ad878e97485dbc02b9344aa72edd2a4f24a.zip CMake-641a0ad878e97485dbc02b9344aa72edd2a4f24a.tar.gz CMake-641a0ad878e97485dbc02b9344aa72edd2a4f24a.tar.bz2 |
BUG: fix for bug# 3310
Diffstat (limited to 'Modules/FindDoxygen.cmake')
-rw-r--r-- | Modules/FindDoxygen.cmake | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Modules/FindDoxygen.cmake b/Modules/FindDoxygen.cmake index fff6e4d..c055f43 100644 --- a/Modules/FindDoxygen.cmake +++ b/Modules/FindDoxygen.cmake @@ -4,6 +4,20 @@ # it contains the doxygen executable in the bundle. In the versions I've # seen, it is located in Resources, but in general, more often binaries are # located in MacOS. + +# The official Doxygen.app that is distributed for OS X uses non-standard +# conventions. Instead of the command-line "doxygen" tool being placed in +# Doxygen.app/Contents/MacOS, "Doxywizard" is placed there instead and +# "doxygen" is actually placed in Contents/Resources. This is most likely +# to accomodate people who double-click on the Doxygen.app package and expect +# to see something happen. However, the CMake backend gets horribly confused +# by this. Once CMake sees the bundle, it indiscrimately uses Doxywizard +# as the executable to use. The only work-around I have found is to disable +# the app-bundle feature for only this command. +# Save the old setting +SET(TEMP_DOXYGEN_SAVE_CMAKE_FIND_APPBUNDLE ${CMAKE_FIND_APPBUNDLE}) +# Disable the App-bundle detection feature +SET(CMAKE_FIND_APPBUNDLE "NEVER") IF (NOT DOXYGEN_FIND_QUIETLY) MESSAGE(STATUS "Looking for doxygen...") ENDIF (NOT DOXYGEN_FIND_QUIETLY) @@ -70,6 +84,9 @@ FIND_PATH(DOXYGEN_DOT_PATH DOC "Path to the Graphviz Dot tool" ) +# Restore the old app-bundle setting setting +SET(CMAKE_FIND_APPBUNDLE ${TEMP_DOXYGEN_SAVE_CMAKE_FIND_APPBUNDLE}) + MARK_AS_ADVANCED( DOXYGEN_FOUND, DOXYGEN_EXECUTABLE, |