diff options
author | Brad King <brad.king@kitware.com> | 2010-07-29 14:59:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-07-29 15:22:48 (GMT) |
commit | df1e00ff82c16bf01fdfc889ceea2d05205e14c6 (patch) | |
tree | c71d34a3771012a92f5ae9852f01de51333aa0c3 /Utilities/Doxygen/doxyfile.in | |
parent | 03b7eff0eacc2b80a85b949eb8031cb5e7a3d393 (diff) | |
download | CMake-df1e00ff82c16bf01fdfc889ceea2d05205e14c6.zip CMake-df1e00ff82c16bf01fdfc889ceea2d05205e14c6.tar.gz CMake-df1e00ff82c16bf01fdfc889ceea2d05205e14c6.tar.bz2 |
Refer to self with CMake_(SOURCE|BINARY)_DIR (#10046)
This is good practice, and is necessary to support building CMake as a
subdirectory of another project.
Diffstat (limited to 'Utilities/Doxygen/doxyfile.in')
-rw-r--r-- | Utilities/Doxygen/doxyfile.in | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Utilities/Doxygen/doxyfile.in b/Utilities/Doxygen/doxyfile.in index ad5e377..c3d3a38 100644 --- a/Utilities/Doxygen/doxyfile.in +++ b/Utilities/Doxygen/doxyfile.in @@ -31,19 +31,19 @@ GRAPHICAL_HIERARCHY = YES ALLEXTERNALS = NO -IMAGE_PATH = "@CMAKE_BINARY_DIR@/Utilities/Doxygen/contrib" +IMAGE_PATH = "@CMake_BINARY_DIR@/Utilities/Doxygen/contrib" -OUTPUT_DIRECTORY = "@CMAKE_BINARY_DIR@/Utilities/Doxygen/doc" +OUTPUT_DIRECTORY = "@CMake_BINARY_DIR@/Utilities/Doxygen/doc" INPUT = \ - "@CMAKE_SOURCE_DIR@/Source" \ - "@CMAKE_SOURCE_DIR@/Source/CPack" \ - "@CMAKE_SOURCE_DIR@/Source/CTest" \ - "@CMAKE_SOURCE_DIR@/Source/CursesDialog" \ - "@CMAKE_SOURCE_DIR@/Source/MFCDialog" \ - "@CMAKE_BINARY_DIR@/Source/kwsys" \ - "@CMAKE_BINARY_DIR@/Source/cmsys" \ - "@CMAKE_BINARY_DIR@/Utilities/Doxygen/dox/doc_CMake_contributors.dox" \ + "@CMake_SOURCE_DIR@/Source" \ + "@CMake_SOURCE_DIR@/Source/CPack" \ + "@CMake_SOURCE_DIR@/Source/CTest" \ + "@CMake_SOURCE_DIR@/Source/CursesDialog" \ + "@CMake_SOURCE_DIR@/Source/MFCDialog" \ + "@CMake_BINARY_DIR@/Source/kwsys" \ + "@CMake_BINARY_DIR@/Source/cmsys" \ + "@CMake_BINARY_DIR@/Utilities/Doxygen/dox/doc_CMake_contributors.dox" \ EXTRACT_ALL = YES EXTRACT_PRIVATE = NO |