From fc8fa184183d7eaa49d789963d6ae9456e32680c Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Tue, 20 Dec 2022 19:04:41 +0200 Subject: [PATCH] =?UTF-8?q?Revert=20"[doc]=20Don=E2=80=99t=20skip=20buildi?= =?UTF-8?q?ng=20on=20Windows"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 196e739cf28456cd8b7989377c3df6a5fe468dd7. --- docs/meson.build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/meson.build b/docs/meson.build index 1fd75cf56..19094d8f7 100644 --- a/docs/meson.build +++ b/docs/meson.build @@ -1,3 +1,8 @@ +if build_machine.system() == 'windows' + message('Skipping gtk-doc while building on Windows') + subdir_done() +endif + if not find_program('gtkdoc-scan', required: get_option('docs')).found() message('Not building documentation as gtk-doc was not found') subdir_done()