Skip to content

Commit

Permalink
Disable libxml++ tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
talisein committed May 30, 2024
1 parent 24f6017 commit bcdcea9
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,24 @@ endif
# Fedora libxml++-devel. Ubuntu doesn't have a -5.0 package.
# Note: I submitted some patches upstream, so the wrap has better performance
# until there is a 5.0.2 release
if hots_machine.system() != 'windows'
libxmlpp_dep = dependency('libxml++-5.0',
version : '>=5.0.2',
fallback: ['libxmlpp'],
default_options: ['build-deprecated-api=false',
'build-examples=false',
'validation=false',
'maintainer-mode=false'])

else
libxmlpp_dep = dependency('libxml++-5.0',
version : '>=5.0.2',
fallback: ['libxmlpp'],
default_options: ['build-deprecated-api=false',
'build-examples=false',
'validation=false',
'maintainer-mode=false',
'build-tests=false'])
endif

if not has_chrono
# Fedora date-devel, Ubuntu libhowardhinnant-date-dev
Expand Down

0 comments on commit bcdcea9

Please sign in to comment.