mirror of
https://github.com/gwm17/Specter.git
synced 2025-10-05 13:58:52 -04:00
34 lines
641 B
Lua
34 lines
641 B
Lua
project "Glad"
|
|
kind "StaticLib"
|
|
language "C"
|
|
|
|
targetdir ("bin/" .. outputdir .. "/%{prj.name}")
|
|
objdir ("bin-int/" .. outputdir .. "/%{prj.name}")
|
|
|
|
files
|
|
{
|
|
"include/glad/glad.h",
|
|
"include/KHR/khrplatform.h",
|
|
"src/glad.c"
|
|
}
|
|
|
|
includedirs
|
|
{
|
|
"include"
|
|
}
|
|
|
|
systemversion "latest"
|
|
|
|
filter "system:macosx or linux"
|
|
pic "On"
|
|
|
|
filter "system:macosx"
|
|
sysincludedirs { "include" }
|
|
|
|
filter "configurations:Debug"
|
|
runtime "Debug"
|
|
symbols "on"
|
|
|
|
filter "configurations:Release"
|
|
runtime "Release"
|
|
optimize "on" |