diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/CMakeLists.txt | 6 | ||||
-rw-r--r-- | doc/LedgerVersion.cmake | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index a13eeb92..08132224 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -7,13 +7,15 @@ cmake_minimum_required(VERSION 3.0) +project(ledger NONE) + # Point CMake at any custom modules we may ship -list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../cmake") +list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}") include(LedgerVersion) configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/version.texi.in - ${PROJECT_BINARY_DIR}/doc/version.texi) + ${CMAKE_CURRENT_SOURCE_DIR}/version.texi) if (USE_DOXYGEN) find_package(Doxygen) diff --git a/doc/LedgerVersion.cmake b/doc/LedgerVersion.cmake new file mode 100644 index 00000000..a6481c6f --- /dev/null +++ b/doc/LedgerVersion.cmake @@ -0,0 +1,5 @@ +set(Ledger_VERSION_MAJOR 3) +set(Ledger_VERSION_MINOR 3) +set(Ledger_VERSION_PATCH 1) +set(Ledger_VERSION_PRERELEASE "") +set(Ledger_VERSION_DATE 20230303) |