Added extern libraries (Made STB one of them)

Former-commit-id: 0ca555e9f035600924c7c23fff06bc3810051fdf
This commit is contained in:
Lynix
2013-04-12 15:12:11 +02:00
parent b7468d3b8f
commit 143707bc2e
10 changed files with 51 additions and 4692 deletions

View File

@@ -0,0 +1,26 @@
-- 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"