From b9a69d3c5b6da95c94aaedc40f5420516ec33b2e Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Sat, 4 Mar 2023 11:29:53 +0100 Subject: Refactor Ledger version info into cmake/LedgerVersion.cmake so it can be re-used when generating the version.texi for ledger-website builds. --- CMakeLists.txt | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 3dc50617..02f05809 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,17 +1,11 @@ cmake_minimum_required(VERSION 3.0) -PROJECT(ledger) - -set(Ledger_VERSION_MAJOR 3) -set(Ledger_VERSION_MINOR 3) -set(Ledger_VERSION_PATCH 1) -set(Ledger_VERSION_PRERELEASE "") -set(Ledger_VERSION_DATE 20230303) +# Point CMake at any custom modules we may ship +list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") +include(LedgerVersion) set(Ledger_TEST_TIMEZONE "America/Chicago") -# Point CMake at any custom modules we may ship -list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake") if ((${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.7.0") AND (${CMAKE_VERSION} VERSION_LESS "3.16.0")) # use backported module from 3.15 (introduced 3.12) to support older versions of cmake. # this only works with cmake 3.7 or higher. -- cgit v1.2.3