From: Paul Brossier Date: Sat, 15 Nov 2025 15:43:48 +0000 (+0100) Subject: [waf] do no try to generate doxygen documentation on windows X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=9e17039bf2c6b2f521a5304085d9b323c096b342;p=aubio.git [waf] do no try to generate doxygen documentation on windows --- diff --git a/wscript b/wscript index 70fddc5c..13d9cbee 100644 --- a/wscript +++ b/wscript @@ -619,7 +619,8 @@ def txt2man(bld): def doxygen(bld): # build documentation from source files using doxygen - if bld.env['DOXYGEN']: + from waflib import Utils + if bld.env['DOXYGEN'] and not Utils.is_win32: bld.env.VERSION = VERSION rule = '( cat ${SRC[0]} && echo PROJECT_NUMBER=${VERSION}' rule += ' && echo OUTPUT_DIRECTORY=%s && echo HTML_OUTPUT=%s )'