From 9a1f16757a0ff402acac4ba97bb889e113707aa3 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Fri, 28 May 2021 15:52:27 -0500 Subject: [PATCH] fix Windows build on release config --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index c987b2caf..8183e4477 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,6 +4,7 @@ project(furnace) set(CMAKE_CXX_STANDARD 11) if (WIN32) + set(SDL_SHARED OFF) add_subdirectory(extern/SDL) add_subdirectory(extern/zlib) set(HAVE_SDL2 SDL2-static)