axmol/thirdparty/bullet/BulletDynamics/premake4.lua

25 lines
560 B
Lua
Raw Normal View History

2020-11-16 14:47:43 +08:00
project "BulletDynamics"
kind "StaticLib"
includedirs {
"..",
}
if os.is("Linux") then
buildoptions{"-fPIC"}
end
files {
"Dynamics/*.cpp",
"Dynamics/*.h",
"ConstraintSolver/*.cpp",
"ConstraintSolver/*.h",
"Featherstone/*.cpp",
"Featherstone/*.h",
"MLCPSolvers/*.cpp",
"MLCPSolvers/*.h",
"Vehicle/*.cpp",
"Vehicle/*.h",
"Character/*.cpp",
"Character/*.h"
}