change configurations for release and debug

This commit is contained in:
jumailj 2023-03-18 12:17:15 +05:30
parent 098db2ef71
commit 3fada28a8f

View File

@ -55,9 +55,11 @@ project "GLFW"
}
filter "configurations:Debug"
runtime "Debug"
symbols "on"
defines "SANDBOX_DEBUG"
buildoptions "/MT" --it uses multithread, static version of the run-time library.[MDd]
symbols "On" -- it allows us to debug code. line by line. which the exe contain suppoting elements to debug.
filter "configurations:Release"
runtime "Release"
optimize "on"
defines "SANDBOX_RELEASE"
buildoptions "/MT" --it uses multithread, static version of the run-time library.[MDd]
optimize "On" -- remove all the debuging datas.