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).
This commit is contained in:
David Runge 2022-06-10 15:25:02 +02:00
parent cd6805e94d
commit 089ef64aa3
No known key found for this signature in database
GPG Key ID: BB992F9864FAD168

View File

@ -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)