meson: don't build with C11

C11 breaks the LuaJIT build
This commit is contained in:
Myaamori 2020-10-27 19:30:51 +00:00 committed by Ryan Lucia
parent 69254ab2b1
commit 0c5c4db142
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
project('Aegisub', ['c', 'cpp'],
license: 'BSD-3-Clause',
meson_version: '>=0.55.0',
default_options: ['c_std=c11', 'cpp_std=c++11', 'b_lto=true'],
default_options: ['cpp_std=c++11', 'b_lto=true'],
version: '3.2.2')
cmake = import('cmake')