From 36c1120674ee360a185d8fea9fcb766bb9d93327 Mon Sep 17 00:00:00 2001 From: Ambigapathy Vinayak Date: Mon, 17 Jun 2024 11:58:21 +0200 Subject: [PATCH] Fixed build error on windows debug and release --- premake5.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/premake5.lua b/premake5.lua index 01f14af..172560a 100644 --- a/premake5.lua +++ b/premake5.lua @@ -22,7 +22,7 @@ project "bakatools" } filter "system:windows" - buildoptions "/MDd" + buildoptions "/MT" defines { "BK_PLATFORM_WINDOWS" @@ -33,6 +33,7 @@ project "bakatools" { "BK_PLATFORM_LINUX" } + filter "configurations:Debug" --buildoptions { "-Wall", "-Wextra" }