Fixed SSE warning in debug with GCC
Former-commit-id: 3632988311795547ccf59a66606b3faccff1a1b1
This commit is contained in:
parent
e6655ef420
commit
e3316c4e10
|
|
@ -35,6 +35,10 @@ configuration "Debug*"
|
||||||
configuration "Release*"
|
configuration "Release*"
|
||||||
flags { "EnableSSE", "EnableSSE2", "Optimize", "OptimizeSpeed", "NoFramePointer", "NoRTTI" }
|
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"
|
||||||
|
|
||||||
configuration "*Static"
|
configuration "*Static"
|
||||||
defines "NAZARA_STATIC"
|
defines "NAZARA_STATIC"
|
||||||
kind "StaticLib"
|
kind "StaticLib"
|
||||||
|
|
@ -52,11 +56,7 @@ configuration "DebugDLL"
|
||||||
targetsuffix "-d"
|
targetsuffix "-d"
|
||||||
|
|
||||||
configuration "codeblocks or codelite or gmake or xcode3*"
|
configuration "codeblocks or codelite or gmake or xcode3*"
|
||||||
buildoptions
|
buildoptions "-std=c++11"
|
||||||
{
|
|
||||||
"-mfpmath=sse",
|
|
||||||
"-std=c++11"
|
|
||||||
}
|
|
||||||
|
|
||||||
configuration { "linux or bsd or macosx", "gmake" }
|
configuration { "linux or bsd or macosx", "gmake" }
|
||||||
buildoptions "-fvisibility=hidden"
|
buildoptions "-fvisibility=hidden"
|
||||||
Loading…
Reference in New Issue