diff --git a/Nuake/dependencies/jolt_p5.lua b/Nuake/dependencies/jolt_p5.lua new file mode 100644 index 00000000..2d1f19d1 --- /dev/null +++ b/Nuake/dependencies/jolt_p5.lua @@ -0,0 +1,35 @@ +project 'JoltPhysics' + location "JoltPhysics" + + kind "StaticLib" + staticruntime "on" + warnings 'Off' + optimize 'Speed' + + targetdir ("JoltPhysics/bin/" .. outputdir .. "/%{prj.name}") + objdir ("JoltPhysics/bin-obj/" .. outputdir .. "/%{prj.name}") + + pchheader "Jolt/Jolt.h" + pchsource "../Jolt.cpp" + + includedirs { + "JoltPhysics" + } + + files { + "JoltPhysics/Jolt/**.h", + "JoltPhysics/Jolt/**.cpp", + "Jolt.cpp" + } + + defines { + + } + + filter "configurations:Debug" + runtime "Debug" + symbols "on" + + filter "configurations:Release" + runtime "Release" + optimize "on" \ No newline at end of file