build: tweak & update

disable toys & guile for now. Add some extra warnings.
This commit is contained in:
Dirk-Jan C. Binnema 2022-05-06 22:11:16 +03:00
parent 4fc05261ce
commit d873c231ee
3 changed files with 12 additions and 8 deletions

View File

@ -51,8 +51,9 @@ test-valgrind: $(BUILDDIR)
--timeout-multiplier 100
test-helgrind: $(BUILDDIR)
@cd $(BUILDDIR); $(MESON) test --wrap='valgrind --tool=helgrind --error-exitcode=1'
@cd $(BUILDDIR); $(MESON) test \
--wrap='valgrind --tool=helgrind --error-exitcode=1' \
--timeout-multiplier 100
dist: $(BUILDDIR)
@cd $(BUILDDIR); $(MESON) dist

View File

@ -23,7 +23,7 @@ project('mu', ['c', 'cpp'],
license: 'GPL-3.0-or-later',
default_options : [
'buildtype=debugoptimized',
'warning_level=2',
'warning_level=3',
'c_std=c11',
'cpp_std=c++17'
]
@ -40,6 +40,7 @@ infodir = join_paths(prefixdir, get_option('infodir'))
# compilers / flags
#
extra_flags = [
'-Wextra',
'-Wno-unused-parameter',
'-Wno-cast-function-type',
'-Wno-#warnings'
@ -180,14 +181,16 @@ endif
if not get_option('guile').disabled() and guile_dep.found()
config_h_data.set('BUILD_GUILE', 1)
config_h_data.set_quoted('GUILE_BINARY', 'guile')
#3subdir('guile')
message('guile is disabled for now')
#subdir('guile')
endif
config_h_data.set_quoted('MU_PROGRAM', mu.full_path())
if get_option('toys').enabled()
subdir('toys/mug')
message('toys are disabled for now')
#subdir('toys/mug')
endif
################################################################################