This gets the project to compile on OSX with Clang 16 (OSX version 14.7.x) but there's missing libraries for the linking stage.

This commit is contained in:
Zed A. Shaw 2025-02-17 05:26:47 -05:00
parent 2a4ada81bb
commit deb235dbc5
2 changed files with 3 additions and 3 deletions

View file

@ -8,12 +8,12 @@ project('raycaster', 'cpp',
# use this for common options only for our executables
cpp_args=[]
# these are passed as override_defaults
exe_defaults = ['warning_level=2', 'werror=true']
exe_defaults = ['warning_level=2', 'werror=false']
cc = meson.get_compiler('cpp')
catch2 = dependency('catch2-with-main')
fmt = dependency('fmt', allow_fallback: true)
fmt = subproject('fmt').get_variable('fmt_dep')
json = dependency('nlohmann_json')
freetype2 = dependency('freetype2')