This is an automated email from the ASF dual-hosted git repository.
weibin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-graphar.git
The following commit(s) were added to refs/heads/main by this push:
new 6116273e fix(c++): Fix the version specification of c++ (#526)
6116273e is described below
commit 6116273e9ae1e210febeccbab12813b8706d1ff7
Author: Weibin Zeng <[email protected]>
AuthorDate: Thu Jun 20 16:00:50 2024 +0800
fix(c++): Fix the version specification of c++ (#526)
Signed-off-by: acezen <[email protected]>
---
cpp/CMakeLists.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
index 45a14c4d..2742c19f 100644
--- a/cpp/CMakeLists.txt
+++ b/cpp/CMakeLists.txt
@@ -34,8 +34,8 @@ endif()
set(GRAPHAR_MAJOR_VERSION 0)
set(GRAPHAR_MINOR_VERSION 12)
set(GRAPHAR_PATCH_VERSION 0)
-set(GREAPHAR_VERSION
${GRAPHAR_MAJOR_VERSION}.${GRAPHAR_MINOR_VERSION}.${GRAPHAR_PATCH_VERSION})
-project(graphar-cpp LANGUAGES C CXX VERSION ${GREAPHAR_VERSION})
+set(GRAPHAR_VERSION
${GRAPHAR_MAJOR_VERSION}.${GRAPHAR_MINOR_VERSION}.${GRAPHAR_PATCH_VERSION})
+project(graphar-cpp LANGUAGES C CXX VERSION ${GRAPHAR_VERSION})
#
------------------------------------------------------------------------------
# cmake options
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]