From e79e12f868e16da7c2a3726ad13205b1dd62ca94 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 8 Nov 2021 17:10:29 +0100 Subject: [PATCH] fix #24 define project version --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 8da6bf6..28eb50d 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,7 @@ project( 'libcgif', 'c', + version : '0.0.1', license : 'MIT', default_options : ['c_std=c99'], ) @@ -9,7 +10,6 @@ lib = library( 'cgif', 'cgif.c', soversion : '0', - version : '0.0.1', install : true, )