Differences From 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]
To Artifact [c35ae25a1c]:
- File meson.build — part of check-in [f00c286569] at 2024-08-04 22:26:24 on branch trunk — Fix building on Windows (user: js, size: 676) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
10 11 12 13 14 15 16 | objfw_dep = dependency('objfw') sdl12_dep = dependency('sdl12_compat') sdlimage_dep = dependency('SDL_image') sdlmixer_dep = dependency('SDL_mixer') zlib_dep = dependency('zlib') | | > | > < < < < | < < < < < < < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | objfw_dep = dependency('objfw') sdl12_dep = dependency('sdl12_compat') sdlimage_dep = dependency('SDL_image') sdlmixer_dep = dependency('SDL_mixer') zlib_dep = dependency('zlib') client_link_args = [] server_link_args = [] extra_deps = [] if host_machine.system() == 'windows' client_link_args += ['-lopengl32', '-lglu32', '-lwinmm'] server_link_args += ['-lwinmm'] else extra_deps += dependency('gl') extra_deps += dependency('glu') extra_deps += dependency('x11') endif subdir('enet') subdir('src') |