LumixEngine/projects/recastnavigation.lua

29 lines
584 B
Lua

solution "RecastDetour"
location "3rdparty/recast/_project/"
targetdir "3rdparty/recast/_build/"
language "C++"
configurations { "Release", "Debug" }
platforms { "x64" }
flags {
"FatalWarnings",
"NoPCH",
"NoExceptions",
"NoRTTI",
"NoEditAndContinue",
"ReleaseRuntime",
"Symbols"
}
project "Recast"
kind "StaticLib"
files {
"3rdparty/recast/Recast/Source/**.cpp",
"3rdparty/recast/Detour/Source/**.cpp"
}
includedirs {
"3rdparty/recast/Recast/Include/",
"3rdparty/recast/Detour/Include/"
}
configuration { "Release" }
flags { "Optimize" }