From 592fa5efc676bda6332fa848b29f56cf4ce5f118 Mon Sep 17 00:00:00 2001 From: Tropical <42101043+tropicaaal@users.noreply.github.com> Date: Mon, 9 Mar 2026 10:07:30 -0500 Subject: [PATCH] fix: adjust compiler options to not silence warning, remove likely AI-written comments --- meson.build | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/meson.build b/meson.build index 5f0751b64..3cc9b0c41 100644 --- a/meson.build +++ b/meson.build @@ -1,11 +1,10 @@ project('4jcraft-chucklegrounds', ['cpp', 'c'], version : '0.1.0', default_options : [ - 'warning_level=0', - 'buildtype=debug', - 'unity=on', # merge source files per target → fewer compile units - 'unity_size=8', # files per unity batch (tune up for faster full builds) - 'b_pch=true', # precompiled headers + 'buildtype=debug', # for now + 'unity=on', # merge source files per target + 'unity_size=8', # TODO: mess around with this + 'b_pch=true', # precompiled headers ], )