mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-15 20:08:54 +03:00
Added Jolt Premake
This commit is contained in:
35
Nuake/dependencies/jolt_p5.lua
Normal file
35
Nuake/dependencies/jolt_p5.lua
Normal file
@@ -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"
|
||||
Reference in New Issue
Block a user