From 6741cf3115b5def9fcf732a6b813fbc14f9870d1 Mon Sep 17 00:00:00 2001 From: patricus Date: Wed, 18 Jun 2025 15:18:46 +0200 Subject: [PATCH] changed project name to patricus utils and made the git hash full instead of short --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index a9f9c3a..c52b376 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ -project('myproject', 'c', version: '3.4') +project('patricus utils', 'c', version: '3.4') # Get the short git commit hash -git_hash = run_command('git', 'rev-parse', '--short', 'HEAD', check: true).stdout().strip() +git_hash = run_command('git', 'rev-parse', 'HEAD', check: true).stdout().strip() # Combine version and hash full_version = '@0@(@1@)'.format(meson.project_version(), git_hash)