[gedit-plugins] build: improve project() call



commit 423f2146907e759fb2647f1ae2e3257ef5bbe866
Author: Sébastien Wilmet <swilmet gnome org>
Date:   Mon Nov 11 15:18:37 2019 +0100

    build: improve project() call
    
    - There is a plugin written in Vala.
    - The license information was not 100% correct, it should have been
      GPL2+. It was anyway not used anywhere (with meson.project_license()).
      I prefer to not duplicate the license information a bit everywhere,
      otherwise it takes more time when changing it. There is already the
      COPYING file.
    - '>= 0.49' looks cleaner :-)

 meson.build | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
---
diff --git a/meson.build b/meson.build
index 9f965e7..fb18048 100644
--- a/meson.build
+++ b/meson.build
@@ -1,8 +1,7 @@
 project(
-  'gedit-plugins', 'c',
+  'gedit-plugins', ['c', 'vala'],
   version: '3.34.0',
-  meson_version: '>=0.49.0',
-  license: 'GPL2'
+  meson_version: '>= 0.49'
 )
 
 gnome = import('gnome')


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