From 444dcd904f0e82317c4cfc3f719c44d30c39987d Mon Sep 17 00:00:00 2001 From: Tristan Cacqueray Date: Sat, 11 May 2024 11:10:42 -0400 Subject: [PATCH] Set proper sdl2 min bound This change prevents building against sdl2 version 1 which does not have the necessary exposed modules. --- dear-imgui.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dear-imgui.cabal b/dear-imgui.cabal index d058911..9136e3a 100644 --- a/dear-imgui.cabal +++ b/dear-imgui.cabal @@ -252,7 +252,7 @@ library exposed-modules: DearImGui.SDL build-depends: - sdl2 + sdl2 >= 2 cxx-sources: imgui/backends/imgui_impl_sdl2.cpp