From 089ef64aa3d8d9fe326cd4f5d4ef85186afc04a8 Mon Sep 17 00:00:00 2001 From: David Runge Date: Fri, 10 Jun 2022 15:25:02 +0200 Subject: [PATCH] Declare version in cmake project() call CMakeLists.txt: Declare the project's version in the cmake project() call so that it may be exported to the project's cmake integration (used by other projects). --- CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7886167..ff712e1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,8 @@ cmake_minimum_required(VERSION 3.7.2) -project(ghcfilesystem) +project( + ghcfilesystem, + VERSION 1.5.12 +) if (POLICY CMP0077) cmake_policy(SET CMP0077 NEW)