Fixed SSE2 not being enabled
Former-commit-id: b4b6b3e014bac4dedfe684a30f9729b4c8f03a36
This commit is contained in:
parent
70ef422950
commit
dba1668011
|
|
@ -33,7 +33,7 @@ configuration "Debug*"
|
|||
flags "Symbols"
|
||||
|
||||
configuration "Release*"
|
||||
flags { "EnableSSE2", "Optimize", "OptimizeSpeed", "NoFramePointer", "NoRTTI" }
|
||||
flags { "EnableSSE", "EnableSSE2", "Optimize", "OptimizeSpeed", "NoFramePointer", "NoRTTI" }
|
||||
|
||||
configuration "*Static"
|
||||
defines "NAZARA_STATIC"
|
||||
|
|
@ -52,7 +52,11 @@ configuration "DebugDLL"
|
|||
targetsuffix "-d"
|
||||
|
||||
configuration "codeblocks or codelite or gmake or xcode3*"
|
||||
buildoptions "-std=c++11"
|
||||
buildoptions
|
||||
{
|
||||
"-mfpmath=sse",
|
||||
"-std=c++11"
|
||||
}
|
||||
|
||||
configuration { "linux or bsd or macosx", "gmake" }
|
||||
buildoptions "-fvisibility=hidden"
|
||||
Loading…
Reference in New Issue