(posix-only (system-include "SDL2/SDL_image.h") (add-pkg "SDL2_image")) (windows-only (system-include "SDL_image.h") (add-cflag (str "-I" sdl-windows-header-path)) (add-lib (str sdl-windows-library-path "SDL2_image.lib "))) (defmodule IMG (register load-texture (Fn [(Ptr SDL_Renderer) (Ptr CChar)] (Ptr SDL_Texture)) "IMG_LoadTexture") (register load (Fn [(Ptr CChar)] (Ptr SDL_Surface)) "IMG_Load") )