aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorjpark37 <jpark37@users.noreply.github.com>2020-11-13 16:11:03 -0800
committerjpark37 <jpark37@users.noreply.github.com>2020-11-13 16:13:02 -0800
commita441b13b89b528e90576ea5fe0f881998b6b11f7 (patch)
tree0db4df74e55b6f3aeead342b7b77ca2ef78674bd /test cases
parent91876b40316962620c1705ae14075ab46f8dd644 (diff)
downloadmeson-a441b13b89b528e90576ea5fe0f881998b6b11f7.zip
meson-a441b13b89b528e90576ea5fe0f881998b6b11f7.tar.gz
meson-a441b13b89b528e90576ea5fe0f881998b6b11f7.tar.bz2
Use c99 instead of c11 for buildoptions test
Older verisons of MSVC do not support C11 properly.
Diffstat (limited to 'test cases')
-rw-r--r--test cases/unit/59 introspect buildoptions/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/unit/59 introspect buildoptions/meson.build b/test cases/unit/59 introspect buildoptions/meson.build
index 16df028..9cfdc2c 100644
--- a/test cases/unit/59 introspect buildoptions/meson.build
+++ b/test cases/unit/59 introspect buildoptions/meson.build
@@ -1,4 +1,4 @@
-project('introspect buildargs', ['c'], default_options: ['c_std=c11', 'cpp_std=c++14', 'buildtype=release'])
+project('introspect buildargs', ['c'], default_options: ['c_std=c99', 'cpp_std=c++14', 'buildtype=release'])
subA = subproject('projectA')