Skip to content

Commit 363fad9

Browse files
committed
fix windows meson build
1 parent dff736b commit 363fad9

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

meson.build

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,6 @@ if host_machine.system() in ['linux','darwin']
211211
deps += bfd
212212
endif
213213
elif host_machine.system() == 'windows'
214-
sdl2 = subproject('SDL2-2.26.3')
215-
sdl2_dep = dependency('sdl2')
216-
sdl2_image = subproject('SDL2_image-2.8.2')
217-
sdl2_image_dep = dependency('SDL2_image')
218214
zlib = subproject('zlib-ng-2.1.3')
219215
zlib_dep = dependency('zlib')
220216
minizip = subproject('minizip-ng-4.0.0')
@@ -223,7 +219,7 @@ elif host_machine.system() == 'windows'
223219
libpng_dep = dependency('libpng')
224220
# Windows Libraries
225221
opengl = compiler.find_library('opengl32')
226-
deps += [sdl2_dep, sdl2_image_dep, zlib_dep, minizip_dep, libpng_dep, opengl]
222+
deps += [zlib_dep, minizip_dep, libpng_dep, opengl]
227223
endif
228224

229225

0 commit comments

Comments
 (0)