mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 13:17:49 +00:00
24 lines
237 B
Lua
24 lines
237 B
Lua
|
|
hasDX11 = findDirectX11()
|
|
|
|
if (hasDX11) then
|
|
|
|
project "BulletSoftBodyDX11Solvers"
|
|
|
|
initDirectX11()
|
|
|
|
kind "StaticLib"
|
|
|
|
targetdir "../../../../lib"
|
|
|
|
includedirs {
|
|
".",
|
|
"../../.."
|
|
}
|
|
files {
|
|
"**.cpp",
|
|
"**.h"
|
|
}
|
|
|
|
end
|