mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-07 19:57:13 +00:00
chore: undo unintentional meson changes, update README
This commit is contained in:
parent
69c3e61ca3
commit
fe631bcff8
|
|
@ -80,7 +80,7 @@ custom_target('copy_assets_to_client',
|
|||
command : [
|
||||
python, meson.project_source_root() / 'scripts/copy_assets_to_client.py',
|
||||
meson.project_source_root(),
|
||||
meson.build_root(),
|
||||
meson.project_build_root(),
|
||||
meson.current_build_dir(),
|
||||
'@INPUT1@',
|
||||
'@OUTPUT@',
|
||||
|
|
|
|||
|
|
@ -48,12 +48,9 @@ sudo apt install \
|
|||
#### Arch/Manjaro
|
||||
|
||||
```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
|
||||
|
||||
```bash
|
||||
|
|
|
|||
|
|
@ -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
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue