chore: undo unintentional meson changes, update README

This commit is contained in:
Tropical 2026-03-10 17:32:53 -05:00
parent 69c3e61ca3
commit fe631bcff8
3 changed files with 6 additions and 10 deletions

View file

@ -80,7 +80,7 @@ custom_target('copy_assets_to_client',
command : [ command : [
python, meson.project_source_root() / 'scripts/copy_assets_to_client.py', python, meson.project_source_root() / 'scripts/copy_assets_to_client.py',
meson.project_source_root(), meson.project_source_root(),
meson.build_root(), meson.project_build_root(),
meson.current_build_dir(), meson.current_build_dir(),
'@INPUT1@', '@INPUT1@',
'@OUTPUT@', '@OUTPUT@',

View file

@ -48,12 +48,9 @@ sudo apt install \
#### Arch/Manjaro #### Arch/Manjaro
```bash ```bash
sudo pacman -S base-devel gcc pkgconf cmake sdl2 mesa openal libvorbis glu sudo pacman -S base-devel gcc pkgconf cmake sdl2-compat mesa openal libvorbis glu
``` ```
> [!TIP]
> SDL2 supports both X11 and Wayland backends; no package swap is necessary for Wayland!!!!!!!
#### Fedora/Red Hat/Nobara #### Fedora/Red Hat/Nobara
```bash ```bash

View file

@ -1,11 +1,10 @@
project('4jcraft-chucklegrounds', ['cpp', 'c'], project('4jcraft-chucklegrounds', ['cpp', 'c'],
version : '0.1.0', version : '0.1.0',
default_options : [ default_options : [
'warning_level=0', 'buildtype=debug', # for now
'buildtype=debug', 'unity=on', # merge source files per target
'unity=on', # merge source files per target → fewer compile units 'unity_size=8', # TODO: mess around with this
'unity_size=8', # files per unity batch (tune up for faster full builds) 'b_pch=true', # precompiled headers
'b_pch=true', # precompiled headers
], ],
) )