project: set version

Set the version of the project within the project() declaration so other
cmake scripts can use PROJECT_VERSION.

Signed-off-by: Bill Roberts <bill.roberts@arm.com>
This commit is contained in:
Bill Roberts 2024-02-20 08:16:57 -06:00
parent 9fb53a9e26
commit aab7f7f517
No known key found for this signature in database
GPG Key ID: EA8A540A73A0824F

View File

@ -34,9 +34,15 @@ cmake_policy(SET CMP0011 NEW)
cmake_policy(SET CMP0012 NEW)
if(TEST_CPP)
project("Mbed TLS" LANGUAGES C CXX)
project("Mbed TLS"
LANGUAGES C CXX
VERSION 3.5.2
)
else()
project("Mbed TLS" LANGUAGES C)
project("Mbed TLS"
LANGUAGES C
VERSION 3.5.2
)
endif()
include(GNUInstallDirs)