25 lines
235 B
Lua
25 lines
235 B
Lua
|
|
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 |