Woops, forgot the premake5 file for glad

This commit is contained in:
Antoine Pilote
2023-09-27 17:22:04 -04:00
parent 63f6904d59
commit b6ab18b1ba

View File

@@ -0,0 +1,36 @@
project 'glad'
location "glad"
kind "StaticLib"
staticruntime "on"
warnings 'Off'
optimize 'Speed'
targetdir ("glad/bin/" .. outputdir .. "/%{prj.name}")
objdir ("glad/bin-obj/" .. outputdir .. "/%{prj.name}")
includedirs
{
"glad/include"
}
files
{
"glad/src/**.c",
"glad/include/**.h",
}
filter "configurations:Debug"
cppdialect "C++17"
runtime "Debug"
symbols "on"
filter "configurations:Release"
cppdialect "C++17"
runtime "Release"
optimize "on"
filter "configurations:Dist"
cppdialect "C++17"
runtime "Release"
optimize "on"