build: bump version to 1.7.10

This commit is contained in:
Dirk-Jan C. Binnema 2022-03-05 00:41:53 +02:00
parent 19a85525b8
commit 0368a48149
2 changed files with 10 additions and 2 deletions

View File

@ -15,7 +15,7 @@
## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
AC_PREREQ([2.68])
AC_INIT([mu],[1.7.9],[https://github.com/djcb/mu/issues],[mu])
AC_INIT([mu],[1.7.10],[https://github.com/djcb/mu/issues],[mu])
AC_COPYRIGHT([Copyright (C) 2008-2021 Dirk-Jan C. Binnema])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_SRCDIR([mu/mu.cc])

View File

@ -18,7 +18,7 @@
# project setup
#
project('mu', ['c', 'cpp'],
version: '1.7.9',
version: '1.7.10',
meson_version: '>= 0.52.0', # debian 10
license: 'GPL-3.0-or-later',
default_options : [
@ -45,6 +45,14 @@ extra_flags = [
'-Wno-#warnings'
]
if get_option('buildtype') == 'debug'
extra_flags += [
'-ggdb',
'-fvar-tracking',
'-fvar-tracking-assignments']
endif
# compilers
cc = meson.get_compiler('c')
cxx= meson.get_compiler('cpp')