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:
parent
2a4ada81bb
commit
deb235dbc5
2 changed files with 3 additions and 3 deletions
|
@ -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')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue