add preliminary premake4 support (next to cmake) mainly to auto-generate Visual Studio projectfiles that can be redistributed (with no dependency on cmake, premake)
This commit is contained in:
23
src/BulletMultiThreaded/GpuSoftBodySolvers/DX11/premake4.lua
Normal file
23
src/BulletMultiThreaded/GpuSoftBodySolvers/DX11/premake4.lua
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
hasDX11 = findDirectX11()
|
||||
|
||||
if (hasDX11) then
|
||||
|
||||
project "BulletSoftBodyDX11Solvers"
|
||||
|
||||
initDirectX11()
|
||||
|
||||
kind "StaticLib"
|
||||
|
||||
targetdir "../../../../lib"
|
||||
|
||||
includedirs {
|
||||
".",
|
||||
"../../.."
|
||||
}
|
||||
files {
|
||||
"**.cpp",
|
||||
"**.h"
|
||||
}
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user