diff options
author | Ralf Habacker <ralf.habacker@freenet.de> | 2013-06-20 16:46:15 +0200 |
---|---|---|
committer | Ralf Habacker <ralf.habacker@freenet.de> | 2013-06-24 14:39:01 +0200 |
commit | 147a65270d1b7fce7a24e5565c6791975b51256d (patch) | |
tree | 0c18ca7d0500a14ec6b10fdd0d0cdc8b2e0ab77b /cmake/doc | |
parent | db80dcb6cb981f984c2b4dee0944a7906332cf0b (diff) | |
download | dbus-147a65270d1b7fce7a24e5565c6791975b51256d.tar.gz |
Use Doxyfile.in for cmake build system too.
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=64875
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Diffstat (limited to 'cmake/doc')
-rw-r--r-- | cmake/doc/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmake/doc/CMakeLists.txt b/cmake/doc/CMakeLists.txt index bd1af17d..7fdfc219 100644 --- a/cmake/doc/CMakeLists.txt +++ b/cmake/doc/CMakeLists.txt @@ -6,9 +6,10 @@ endif(DOXYGEN_EXECUTABLE) if (DBUS_ENABLE_DOXYGEN_DOCS) set (top_srcdir ${CMAKE_SOURCE_DIR}/..) - configure_file(${CMAKE_SOURCE_DIR}/Doxyfile.cmake ${CMAKE_BINARY_DIR}/Doxyfile ) + configure_file(${CMAKE_SOURCE_DIR}/../Doxyfile.in ${CMAKE_BINARY_DIR}/Doxyfile ) add_custom_target(doc COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/Doxyfile + WORKING_DIRECTORY ${CMAKE_BINARY_DIR} ) endif (DBUS_ENABLE_DOXYGEN_DOCS) |