From 47b76f14960162b6132f3eefa17db2a2cc34e2ac Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Mon, 15 Jan 2018 12:11:35 +0000 Subject: [PATCH] Set meson C language to C11 This'll allow for C11 Atomics --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 72d44ad..9862211 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,5 @@ project('gamemode', 'c', + default_options : ['c_std=c11'], version : '0.2', license : 'BSD' ) cc = meson.get_compiler('c')