Differences From Artifact [e523f05d4d]:
- File
meson.build
— part of check-in
[1ee33c9983]
at
2024-08-03 14:50:31
on branch trunk
— Don't depend on global constructors for commands
This breaks when using ObjC, as these can run before the ObjC module is initialized, resulting in non-working message sends as the selectors are not registered yet. (user: js, size: 2021) [annotate] [blame] [check-ins using]
To Artifact [a2608a5a36]:
- File
meson.build
— part of check-in
[51594e74fb]
at
2024-08-04 11:35:00
on branch trunk
— meson.build: Improve Windows compatibility
Meson still needs a patch to pick the correct compiler on Windows and enet still does not link on Windows. (user: js, size: 2205) [annotate] [blame] [check-ins using]
1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | - + - - - - + + + + + + + + + + + + | project('Cube', ['c', 'objcpp'], |
︙ | |||
69 70 71 72 73 74 75 | 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | - - - + + - + + - + + | 'src/worldrender.mm', ], dependencies: [ objfw_dep, sdl12_dep, sdlimage_dep, sdlmixer_dep, |