Convert remaining files to pure Objective-C

FossilOrigin-Name: 12cac9666ac09097e06d34da46bf50d15c8571dea22fd2a6d8a1fad076999689
This commit is contained in:
Jonathan Schleifer 2025-03-20 22:22:40 +00:00
parent 61bf59bbfc
commit fd09d38b8c
17 changed files with 182 additions and 182 deletions

View file

@ -1,17 +1,15 @@
project('Cube', ['c', 'objc', 'objcpp'],
project('Cube', ['c', 'objc'],
meson_version: '>=1.5.0',
default_options: {
'optimization': '2'
})
foreach lang : ['objc', 'objcpp']
add_global_arguments(
[
'-fobjc-arc',
'-fobjc-arc-exceptions'
],
language: lang)
endforeach
add_global_arguments(
[
'-fobjc-arc',
'-fobjc-arc-exceptions'
],
language: 'objc')
objfw_dep = dependency('objfw')
sdl_dep = dependency('SDL2')