updates and stuff

This commit is contained in:
Mars 2024-08-05 15:28:15 -04:00
parent 4c993f6dd8
commit 133654b020
Signed by: pupbrained
GPG key ID: 874E22DF2F9DFCB5
5 changed files with 230 additions and 21 deletions

View file

@ -28,6 +28,7 @@ if host_machine.system() == 'darwin'
'-Wno-pre-c++20-compat-pedantic',
'-Wno-switch-default',
'-Wunused-function',
'-fvisibility=hidden'
]),
language: 'objcpp'
)
@ -43,7 +44,8 @@ common_cpp_args = [
'-Wno-padded',
'-Wno-pre-c++20-compat-pedantic',
'-Wno-switch-default',
'-Wunused-function'
'-Wunused-function',
'-fvisibility=hidden'
]
if host_machine.system() == 'windows'
@ -111,4 +113,3 @@ executable(
link_args: link_args,
dependencies: deps
)