Move classes into separate files
FossilOrigin-Name: 14861826d4c1f561aca909afe773366a46b57b20cf41fd668092dfb98d960d80
This commit is contained in:
parent
3661ce9a40
commit
623076a034
17 changed files with 366 additions and 322 deletions
16
meson.build
16
meson.build
|
@ -1,12 +1,14 @@
|
|||
project('Cube', ['c', 'objcpp'],
|
||||
project('Cube', ['c', 'objc', 'objcpp'],
|
||||
meson_version: '>=1.5.0')
|
||||
|
||||
add_global_arguments(
|
||||
[
|
||||
'-fobjc-arc',
|
||||
'-fobjc-arc-exceptions'
|
||||
],
|
||||
language: 'objcpp')
|
||||
foreach lang : ['objc', 'objcpp']
|
||||
add_global_arguments(
|
||||
[
|
||||
'-fobjc-arc',
|
||||
'-fobjc-arc-exceptions'
|
||||
],
|
||||
language: lang)
|
||||
endforeach
|
||||
|
||||
objfw_dep = dependency('objfw')
|
||||
sdl_dep = dependency('SDL2')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue