Files
NazaraEngine/build/scripts/common_extlibs.lua
Lynix 143707bc2e Added extern libraries (Made STB one of them)
Former-commit-id: 0ca555e9f035600924c7c23fff06bc3810051fdf
2013-04-12 15:12:11 +02:00

27 lines
555 B
Lua

-- Configuration générale
configurations
{
"Debug",
"Release"
}
location("../extlibs/build/" .. _ACTION)
includedirs "../extlibs/include"
if (_OPTIONS["x64"]) then
targetdir "../extlibs/lib/x64"
else
targetdir "../extlibs/lib/x86"
end
configuration "Debug"
flags "Symbols"
targetsuffix "-d"
configuration "Release"
flags { "EnableSSE", "EnableSSE2", "Optimize", "OptimizeSpeed", "NoFramePointer", "NoRTTI" }
-- Activation du SSE côté GCC
configuration { "Release*", "codeblocks or codelite or gmake or xcode3*" }
buildoptions "-mfpmath=sse"