summaryrefslogtreecommitdiffstats
path: root/libcgif-pc.patch
blob: eecbab4894bac6d29b383dd85ef1eaace2e3c9e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From e79e12f868e16da7c2a3726ad13205b1dd62ca94 Mon Sep 17 00:00:00 2001
From: Remi Collet <remi@remirepo.net>
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,
 )