diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2023-04-09 08:00:07 +0200 |
---|---|---|
committer | Alexis Hildebrandt <afh@surryhill.net> | 2023-04-09 08:00:07 +0200 |
commit | 339706f6a6cb92801d32d2530cc4856120af040e (patch) | |
tree | 0073553277db1eb9613227249f11dc95c12c077b /doc | |
parent | 6e6b3eb6fe311975774bf9105ac52dfbe50d7148 (diff) | |
download | fork-ledger-339706f6a6cb92801d32d2530cc4856120af040e.tar.gz fork-ledger-339706f6a6cb92801d32d2530cc4856120af040e.tar.bz2 fork-ledger-339706f6a6cb92801d32d2530cc4856120af040e.zip |
doc: Use CMake variables for project name and version
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Doxyfile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index 6da4217c..87196437 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -26,13 +26,13 @@ DOXYFILE_ENCODING = UTF-8 # identify the project. Note that if you do not use Doxywizard you need # to put quotes around the project name if it contains spaces. -PROJECT_NAME = Ledger +PROJECT_NAME = @PROJECT_NAME@ # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 3.0 +PROJECT_NUMBER = @Ledger_VERSION_MAJOR@.@Ledger_VERSION_MINOR@.@Ledger_VERSION_PATCH@ # 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 |