summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-02-15 13:59:01 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2018-02-28 19:32:50 +0100
commit522531e7d2f22329739f7bef5b816813b478d365 (patch)
treeb11a68f569f7b24264af88902b1fca48d44cd625
parentca0e044b0e1dd572054f29a45eb3d72e71ef4300 (diff)
downloadtotem-522531e7d2f22329739f7bef5b816813b478d365.tar.gz
build: Remove unnecessary default options
`warning_level` is already 1 by default in meson, so it's not necessary to set this value as default option. The C99 standard was also incorrectly introduced in the meson port.
-rw-r--r--meson.build6
1 files changed, 1 insertions, 5 deletions
diff --git a/meson.build b/meson.build
index 8a87b8b92..acbc7abed 100644
--- a/meson.build
+++ b/meson.build
@@ -2,11 +2,7 @@ project(
'totem', 'c',
version: '3.26.0',
license: 'GPL2+ with exception',
- default_options: [
- 'buildtype=debugoptimized',
- 'c_std=gnu99',
- 'warning_level=1'
- ],
+ default_options: 'buildtype=debugoptimized',
meson_version: '>= 0.41.0'
)