mirror of
https://github.com/glfw/glfw.git
synced 2025-04-04 16:02:02 +00:00
change configurations for release and debug
This commit is contained in:
parent
098db2ef71
commit
3fada28a8f
10
premake5.lua
10
premake5.lua
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user