From 038edf4ca0678be961eb61cd522fca0d72f56160 Mon Sep 17 00:00:00 2001 From: Mahmoud Mazouz Date: Wed, 10 Apr 2024 15:08:14 +0200 Subject: [PATCH] fix: Simplify project version matching in CMakeLists.txt --- CMakeLists.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 35728830d..58af3aca4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,12 @@ cmake_minimum_required(VERSION 3.16) + +# NOTE(fuzzpixelz): The ci/scripts/bump.bash scripts sets the project version +# using regular expressions on this statement. +set(ZENOHC_VERSION 0.11.0.0) + project( zenohc - VERSION 0.11.0.0 + VERSION ${ZENOHC_VERSION} DESCRIPTION "The C bindings for Zenoh" HOMEPAGE_URL "https://github.com/eclipse-zenoh/zenoh-c" LANGUAGES C