build: Set C standard with CMake and meson

This should add `/std:c11` to MSVC builds which makes sure that the
__STDC_VERSION__ macro is set.
This commit is contained in:
Nick Wellnhofer 2024-12-21 18:55:51 +01:00
parent 3d4f7f47b9
commit df7cb96c50
2 changed files with 9 additions and 1 deletions

View File

@ -10,6 +10,8 @@ endif()
project(libxml2 VERSION ${VERSION} LANGUAGES C)
set(CMAKE_C_STANDARD 11)
include(CheckCSourceCompiles)
include(CheckFunctionExists)
include(CheckIncludeFiles)

View File

@ -3,7 +3,11 @@ project(
'c',
version: files('VERSION'),
license: 'MIT',
default_options: ['buildtype=debug', 'warning_level=3'],
default_options: [
'c_std=c11,c99,c89',
'buildtype=debug',
'warning_level=3',
],
meson_version: '>= 0.61',
)
@ -55,6 +59,8 @@ cc = meson.get_compiler('c')
# global compiler flags
global_args = [
'-D_XOPEN_SOURCE=600',
# Enabled by warning_level=3
# '-pedantic',
# '-Wall',