Fix the build to work with new meson.

This commit is contained in:
Zed A. Shaw 2026-03-31 13:04:11 -04:00
parent 31adf011ef
commit aff0fb839c

View file

@ -3,9 +3,9 @@
# HEY BUG: when you have a . spec in a LEL it doesn't work on text # HEY BUG: when you have a . spec in a LEL it doesn't work on text
project('lel-guecs', 'cpp', project('lel-guecs', 'cpp',
version: '0.7.0', version: '0.7.1',
default_options: [ default_options: [
'cpp_std=c++20', 'cpp_std=c++23',
'cpp_args=-D_GLIBCXX_DEBUG=1 -D_GLIBCXX_DEBUG_PEDANTIC=1', 'cpp_args=-D_GLIBCXX_DEBUG=1 -D_GLIBCXX_DEBUG_PEDANTIC=1',
]) ])
@ -32,10 +32,6 @@ if build_machine.system() == 'windows'
exe_defaults += ['werror=false'] exe_defaults += ['werror=false']
elif build_machine.system() == 'darwin' elif build_machine.system() == 'darwin'
add_global_link_arguments(
language: 'cpp',
)
opengl = dependency('OpenGL') opengl = dependency('OpenGL')
corefoundation = dependency('CoreFoundation') corefoundation = dependency('CoreFoundation')
carbon = dependency('Carbon') carbon = dependency('Carbon')