diff options
author | 2019-05-17 14:57:40 +0300 | |
---|---|---|
committer | 2019-05-17 14:57:40 +0300 | |
commit | 6b54ba23252f53ce143b1eb5c12bb2bc101d9a07 (patch) | |
tree | f9366a2baeeae40a66f04cce32c2efba9cdc6633 | |
parent | 2af2f46c41c7e4c770acf466baa5717b763b70a5 (diff) | |
download | usurpation-6b54ba23252f53ce143b1eb5c12bb2bc101d9a07.tar.gz usurpation-6b54ba23252f53ce143b1eb5c12bb2bc101d9a07.tar.bz2 usurpation-6b54ba23252f53ce143b1eb5c12bb2bc101d9a07.zip |
adjust meson project default settings.
make it more debug-friendly by defaut, seeing how it's in active
pre-release development.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 34c5aab..17319ae 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('usurpation', 'c', license : 'LGPL2.1', - default_options : ['c_std=gnu11', 'buildtype=release'], + default_options : ['c_std=gnu11', 'buildtype=debug', 'warning_level=3'], meson_version : '>=0.49.0') deps = [dependency('threads'), dependency('rin'), dependency('glib-2.0', version : '>= 2.14'), dependency('purple')] |