build: Change project's default values

The project license has a different license from the one in the
source code files: GPL2 in the project's description, and GPL2 or
later in the source code files.

The default options for warning level and the no undefined flag when
linking have also the default options already used by meson.

This patch fixes the project license and also removes the default
options which are already used by meson.

https://bugzilla.gnome.org/show_bug.cgi?id=788796
This commit is contained in:
Iñigo Martínez 2017-11-15 11:07:49 +01:00
parent d56af4d802
commit 98a1498a8e

View file

@ -1,12 +1,8 @@
project(
'gitg', ['c', 'vala'],
version: '3.26.0',
license: 'GPL2',
default_options: [
'b_lundef=true',
'buildtype=debugoptimized',
'warning_level=1'
],
license: 'GPL2+',
default_options: 'buildtype=debugoptimized',
meson_version: '>= 0.43.0'
)