This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch efl
in repository laugh.

View the commit online.

commit 503f1faf020912a99429b7baa70ca2ee1f4d197b
Author: melerva <[email protected]>
AuthorDate: Mon Sep 22 11:34:45 2025 -0400

    Specify project version properly
---
 meson.build | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/meson.build b/meson.build
index 82699f7..d70b5ff 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,10 @@
-project('laugh', 'c')
+project('laugh', 'c',
+  license: 'MIT',
+  license_files: [
+    'LICENSE.md',
+  ],
+  version: '0.0.0',
+)
 
 prog_xxd = find_program('xxd')
 
@@ -33,9 +39,9 @@ laugh_sources = [
 ]
 
 conf = configuration_data()
-conf.set('LAUGH_VERSION_MAJOR', 0)
-conf.set('LAUGH_VERSION_MINOR', 0)
-conf.set('LAUGH_VERSION_PATCH', 0)
+conf.set('LAUGH_VERSION_MAJOR', meson.project_version().split('.').get(0).to_int())
+conf.set('LAUGH_VERSION_MINOR', meson.project_version().split('.').get(1).to_int())
+conf.set('LAUGH_VERSION_PATCH', meson.project_version().split('.').get(2).to_int())
 
 conf.set('EFL_BETA_API_SUPPORT', 1) # harmless if unused
 conf.set('LAUGH_USE_EFL_CORE', efl_core_dep.found())

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to