[gnome-usage] build: Add license and required meson version



commit e591fb2ecae4f2784fc2a04c0c918b85cf1189fd
Author: Iñigo Martínez <inigomartinez gmail com>
Date:   Wed Dec 20 12:32:15 2017 +0100

    build: Add license and required meson version
    
    The project function allows a License parameter which enhances the
    project information. The project's AGPL3 license has been aded.
    
    The function also allows a required meson version parameter. The
    gnome module was added in the 0.37.0 version, so that version has
    been added as the minimum required meson version.

 meson.build | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
---
diff --git a/meson.build b/meson.build
index a004cd9..97a1f6e 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,9 @@
-project('gnome-usage', ['vala', 'c'], version : '0.4.5')
+project(
+  'gnome-usage', ['vala', 'c'],
+  version: '0.4.5',
+  license: 'AGPL3',
+  meson_version: '>= 0.37.0'
+)
 
 cc = meson.get_compiler('c')
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]