From 06c8219ceea2b89851e484d63d6cecd10ec97a14 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Tue, 19 May 2020 19:39:34 +0200 Subject: [PATCH] meson: also build gi-dump-types on Windows --- gi-dump-types.c | 1 + meson.build | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gi-dump-types.c b/gi-dump-types.c index 8dae9c027..aeef774ce 100644 --- a/gi-dump-types.c +++ b/gi-dump-types.c @@ -1,6 +1,7 @@ /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ #include "gdump.c" #ifdef G_OS_WIN32 + #include #include /* For _get_osfhandle() */ #include #else diff --git a/meson.build b/meson.build index 6cd8fd303..c8ef6aa95 100644 --- a/meson.build +++ b/meson.build @@ -204,7 +204,7 @@ gthash_test = executable('gthash-test', 'gthash-test.c', test('gthash-test', gthash_test) -if giounix_dep.found() +if giounix_dep.found() or giowin_dep.found() executable('gi-dump-types', 'gi-dump-types.c', - dependencies: [girepo_dep, giounix_dep]) + dependencies: [girepo_dep, giounix_dep, giowin_dep]) endif