From 3856b92c50818e4c4f46e72949bb5e9b76642c8d Mon Sep 17 00:00:00 2001 From: Yuto Takano Date: Fri, 9 Aug 2024 17:06:17 +0100 Subject: [PATCH] Fix extra-bundled-libraries missing C prefix for SDL --- HaskellGameJamTemplate.cabal | 2 +- libSDL2.dll => libCSDL2.dll | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename libSDL2.dll => libCSDL2.dll (100%) diff --git a/HaskellGameJamTemplate.cabal b/HaskellGameJamTemplate.cabal index ee233c3..b25f6d8 100644 --- a/HaskellGameJamTemplate.cabal +++ b/HaskellGameJamTemplate.cabal @@ -60,7 +60,7 @@ executable Game -- is found in the system package manager. -- Linux: apt-get install libsdl2-dev -- OSX: brew install sdl2 - extra-bundled-libraries: SDL2 + extra-bundled-libraries: CSDL2 -- Base language which the package is written in. diff --git a/libSDL2.dll b/libCSDL2.dll similarity index 100% rename from libSDL2.dll rename to libCSDL2.dll