31 lines
544 B
Lua
31 lines
544 B
Lua
MODULE.Name = "Physics3D"
|
|
|
|
MODULE.Defines = {
|
|
"_NEWTON_STATIC_LIB"
|
|
}
|
|
|
|
MODULE.OsDefines.Windows = {
|
|
"_WINDOWS"
|
|
}
|
|
|
|
MODULE.Libraries = {
|
|
"NazaraCore",
|
|
"newton" -- Newton Game Dynamics
|
|
}
|
|
|
|
MODULE.Custom = function()
|
|
vectorextensions("SSE3")
|
|
|
|
filter({"architecture:x86_64", "system:linux"})
|
|
defines("_POSIX_VER_64")
|
|
|
|
filter({"architecture:x86", "system:linux"})
|
|
defines("_POSIX_VER")
|
|
|
|
filter({"architecture:x86_64", "system:macosx"})
|
|
defines("_POSIX_VER_64")
|
|
|
|
filter({"architecture:x86", "system:macosx"})
|
|
defines("_POSIX_VER")
|
|
end
|