add VHACD, with the addition of Wavefront .obj export

This commit is contained in:
Erwin Coumans
2016-09-26 07:16:18 -07:00
parent 666c8f47b7
commit ffee956dde
33 changed files with 12368 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
project "test_vhacd"
if _OPTIONS["ios"] then
kind "WindowedApp"
else
kind "ConsoleApp"
end
includedirs {"../../public"}
links {
"vhacd"
}
language "C++"
files {
"main.cpp",
}
if os.is("Linux") then
links {"pthread"}
end