diff setup.py @ 786:7e940ebeb5fd

Replace SDL2_image with the image crate
author Link Mauve <linkmauve@linkmauve.fr>
date Mon, 01 Dec 2025 17:05:48 +0100
parents ec1e06402a97
children
line wrap: on
line diff
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@
 
 COMMAND = 'pkg-config'
 GLFW_LIBRARIES = ['glfw3']
-SDL_LIBRARIES = ['sdl2', 'SDL2_image', 'SDL2_ttf']
+SDL_LIBRARIES = ['sdl2', 'SDL2_ttf']
 GL_LIBRARIES = ['epoxy']
 
 debug = False  # True to generate HTML annotations and display infered types.
@@ -67,7 +67,6 @@
 default_libs = {
     'glfw3': '-lglfw',
     'sdl2': '-lSDL2',
-    'SDL2_image': '-lSDL2_image',
     'SDL2_ttf': '-lSDL2_ttf',
     'epoxy': '-lepoxy'
 }