[pango/master.prec99] meson.build: Fix check for msvc_recommended_pragmas.h
- From: Chun-wei Fan <fanchunwei src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pango/master.prec99] meson.build: Fix check for msvc_recommended_pragmas.h
- Date: Wed, 26 Aug 2020 07:38:42 +0000 (UTC)
commit 89ae260fb07bbcb28230921e12859c495c6f7bc9
Author: Chun-wei Fan <fanchunwei src gnome org>
Date: Wed Aug 26 15:37:51 2020 +0800
meson.build: Fix check for msvc_recommended_pragmas.h
There was a typo when we checked whether force-including it would be
supported. Fix that.
meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/meson.build b/meson.build
index 9708f826..160a9152 100644
--- a/meson.build
+++ b/meson.build
@@ -57,7 +57,7 @@ common_ldflags = []
if cc.get_id() == 'msvc'
# Compiler options taken from msvc_recommended_pragmas.h
# in GLib, based on _Win32_Programming_ by Rector and Newcomer
- test_cflags = ['-FImsvc_recommended_pragmas', '-utf-8']
+ test_cflags = ['-FImsvc_recommended_pragmas.h', '-utf-8']
add_project_arguments(cc.get_supported_arguments(test_cflags), language: 'c')
test_c_only_flags = []
elif cc.get_id() == 'gcc' or cc.get_id() == 'clang'
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]