Skip to content
This repository has been archived by the owner on Jul 8, 2022. It is now read-only.

A small doxygen improvement - take version from cmake #436

Merged
merged 3 commits into from
Feb 20, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion cppapi/doxygen/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
add_custom_target(doc doxygen ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)

add_custom_target(doc doxygen ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../server
SOURCES Doxyfile)
2 changes: 1 addition & 1 deletion cppapi/doxygen/Doxyfile → cppapi/doxygen/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Tango Core Classes Reference "
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 9.2.5
PROJECT_NUMBER = @MAJOR_VERSION@.@MINOR_VERSION@.@PATCH_VERSION@

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down