Merge branch 'optional_tests' into 'master'

Only build tests if certain conditions are met.

See merge request GNOME/glib!774
This commit is contained in:
Philip Withnall 2019-04-16 10:19:41 +00:00
commit e6f1b364cc
4 changed files with 20 additions and 4 deletions

View File

@ -994,4 +994,8 @@ if enable_systemtap
endif
subdir('fam')
subdir('tests')
# Dont build the tests unless we can run them (either natively or in an exe wrapper)
build_tests = not meson.is_cross_build() or (meson.is_cross_build() and meson.has_exe_wrapper())
if build_tests
subdir('tests')
endif

View File

@ -459,4 +459,8 @@ if enable_systemtap
install : true)
endif
subdir('tests')
# Dont build the tests unless we can run them (either natively or in an exe wrapper)
build_tests = not meson.is_cross_build() or (meson.is_cross_build() and meson.has_exe_wrapper())
if build_tests
subdir('tests')
endif

View File

@ -166,4 +166,8 @@ if enable_systemtap
install : true)
endif
subdir('tests')
# Dont build the tests unless we can run them (either natively or in an exe wrapper)
build_tests = not meson.is_cross_build() or (meson.is_cross_build() and meson.has_exe_wrapper())
if build_tests
subdir('tests')
endif

View File

@ -2045,7 +2045,11 @@ subdir('gthread')
subdir('gmodule')
subdir('gio')
subdir('fuzzing')
subdir('tests')
# Dont build the tests unless we can run them (either natively or in an exe wrapper)
build_tests = not meson.is_cross_build() or (meson.is_cross_build() and meson.has_exe_wrapper())
if build_tests
subdir('tests')
endif
# xgettext is optional (on Windows for instance)
if find_program('xgettext', required : get_option('nls')).found()