sdl can build now

This commit is contained in:
SimonFJ20 2023-01-08 19:33:07 +01:00
parent 4aa57c5bd0
commit b838611fa0
2 changed files with 5 additions and 2 deletions

View File

@ -12,7 +12,7 @@
## VS Code development setup
### Install
- `clang-15` recommended, `clang-15` based, check with `clang --version`
- LLVM and clang, `clang-15` recommended, `clang-15` based, check with `clang --version`
- [Meson](https://mesonbuild.com/), build system
- [Meson VS Code extension](https://marketplace.visualstudio.com/items?itemName=mesonbuild.mesonbuild)
- [VSCode - clangd](https://marketplace.visualstudio.com/items?itemName=llvm-vs-code-extensions.vscode-clangd), linter

View File

@ -4,7 +4,7 @@ project(
version: '0.1',
default_options: [
'warning_level=3',
'werror=true',
'werror=false',
'cpp_std=c++20',
],
)
@ -36,6 +36,9 @@ browser_exe = executable(
include_directories: [
include_directories('browser'),
],
override_options: [
'werror=true',
],
dependencies: [
fmt_dep,
sdl2_dep,