1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
project('Cube', ['c', 'objc', 'objcpp'],
meson_version: '>=1.5.0',
default_options: {
'optimization': '2'
})
foreach lang : ['objc', 'objcpp']
add_global_arguments(
[
'-fobjc-arc',
'-fobjc-arc-exceptions'
],
language: lang)
endforeach
objfw_dep = dependency('objfw')
sdl_dep = dependency('SDL2')
sdlimage_dep = dependency('SDL2_image')
sdlmixer_dep = dependency('SDL2_mixer')
zlib_dep = dependency('zlib')
|
|
<
|
|
|
|
|
|
<
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
project('Cube', ['c', 'objc'],
meson_version: '>=1.5.0',
default_options: {
'optimization': '2'
})
add_global_arguments(
[
'-fobjc-arc',
'-fobjc-arc-exceptions'
],
language: 'objc')
objfw_dep = dependency('objfw')
sdl_dep = dependency('SDL2')
sdlimage_dep = dependency('SDL2_image')
sdlmixer_dep = dependency('SDL2_mixer')
zlib_dep = dependency('zlib')
|