Skip to content

Commit

Permalink
meson: Don't use the GNOME module on Windows
Browse files Browse the repository at this point in the history
Till mesonbuild/meson#1801 is fixed.
  • Loading branch information
nirbheek committed May 15, 2017
1 parent 0f08cf5 commit e065e13
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/gobject/meson.build
Expand Up @@ -12,7 +12,10 @@ gobject_tests = [

# The marshal test requires running a binary, which means we cannot
# build it when cross-compiling
if not meson.is_cross_build() or meson.has_exe_wrapper()
#
# FIXME: Can't build this standalone on Windows till
# https://github.com/mesonbuild/meson/issues/1801 is fixed.
if (not meson.is_cross_build() or meson.has_exe_wrapper()) and build_machine.system() != 'windows'
gnome = import('gnome')

testmarshal_srcs = gnome.genmarshal('testmarshal',
Expand Down

0 comments on commit e065e13

Please sign in to comment.