summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAlexis Hildebrandt <afh@surryhill.net>2023-03-20 21:23:28 +0100
committerMartin Michlmayr <tbm@cyrius.com>2023-03-22 09:05:00 +0800
commitcbc9993b502a21388eac7218b105b60a8a71150c (patch)
treed0184202604c87c188fa06cdb346ee826ca84679 /doc
parent1db189b3dc4366d7b3edcb1d46ad1c238cf6c819 (diff)
downloadfork-ledger-cbc9993b502a21388eac7218b105b60a8a71150c.tar.gz
fork-ledger-cbc9993b502a21388eac7218b105b60a8a71150c.tar.bz2
fork-ledger-cbc9993b502a21388eac7218b105b60a8a71150c.zip
docs: Enable stand-alone building
Diffstat (limited to 'doc')
-rw-r--r--doc/CMakeLists.txt6
-rw-r--r--doc/LedgerVersion.cmake5
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)