Differences From Artifact [3e8495e9ec]:
- File
meson.build
— part of check-in
[f5b62f8203]
at
2025-03-04 23:03:58
on branch trunk
— Initial port to macOS
Doesn't work yet as SDL1 is broken on modern macOS. (user: js, size: 852) [annotate] [blame] [check-ins using]
To Artifact [c0a1562e22]:
- File meson.build — part of check-in [42d4b57828] at 2025-03-04 23:51:09 on branch trunk — Port to SDL2 (user: js, size: 770) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 | project('Cube', ['c', 'objcpp'], meson_version: '>=1.5.0') add_global_arguments( [ '-fobjc-arc', '-fobjc-arc-exceptions' ], language: 'objcpp') objfw_dep = dependency('objfw') | < < | < | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | project('Cube', ['c', 'objcpp'], meson_version: '>=1.5.0') add_global_arguments( [ '-fobjc-arc', '-fobjc-arc-exceptions' ], language: 'objcpp') objfw_dep = dependency('objfw') sdl_dep = dependency('SDL2') sdlimage_dep = dependency('SDL2_image') sdlmixer_dep = dependency('SDL2_mixer') zlib_dep = dependency('zlib') client_link_args = [] server_link_args = [] extra_deps = [] if host_machine.system() == 'windows' |
︙ | ︙ |