Force meson to use the libs I told messon to use.

This commit is contained in:
Zed A. Shaw 2026-03-01 14:44:28 -05:00
parent 713dd9212f
commit 7f3d0b1b18

View file

@ -51,22 +51,21 @@ elif build_machine.system() == 'darwin'
] ]
endif endif
catch2 = dependency('catch2-with-main') catch2 = subproject('catch2').get_variable('catch2_with_main_dep')
fmt = subproject('fmt').get_variable('fmt_dep') fmt = subproject('fmt').get_variable('fmt_dep')
freetype2 = dependency('freetype2') freetype2 = subproject('freetype2').get_variable('freetype_dep')
flac = dependency('flac') box2d = subproject('box2d').get_variable('box2d_dep')
box2d = dependency('box2d') flac = subproject('flac').get_variable('flac_dep')
ogg = dependency('ogg') ogg = subproject('ogg').get_variable('libogg_dep')
vorbis = dependency('vorbis') vorbis = subproject('vorbis').get_variable('vorbis_dep')
vorbisfile = dependency('vorbisfile') vorbisfile = subproject('vorbis').get_variable('vorbisfile_dep')
vorbisenc = dependency('vorbisenc') vorbisenc = subproject('vorbis').get_variable('vorbisenc_dep')
sfml_audio = dependency('sfml_audio') sfml_audio = subproject('sfml').get_variable('sfml_audio_dep')
sfml_graphics = dependency('sfml_graphics') sfml_graphics = subproject('sfml').get_variable('sfml_graphics_dep')
sfml_network = dependency('sfml_network') sfml_network = subproject('sfml').get_variable('sfml_network_dep')
sfml_system = dependency('sfml_system') sfml_system = subproject('sfml').get_variable('sfml_system_dep')
sfml_window = dependency('sfml_window', sfml_window = subproject('sfml').get_variable('sfml_window_dep')
default_options: ['default_library=shared'])
dependencies += [ dependencies += [
fmt, freetype2, fmt, freetype2,