From 39f528d7ad662c816b1f7e50e62601305c6093c7 Mon Sep 17 00:00:00 2001 From: LandaMm Date: Wed, 1 Oct 2025 10:40:59 +0200 Subject: [PATCH] feat: dynamic glew linking on windows --- include/prelude.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/prelude.h b/include/prelude.h index 8912e37..098e83d 100644 --- a/include/prelude.h +++ b/include/prelude.h @@ -1,7 +1,11 @@ #ifndef PRELUDE_H_ #define PRELUDE_H_ + +#ifndef WIN32 #define GLEW_STATIC +#endif #include + #include "SDL3/SDL.h" struct RenderContext {