LumixEngine/projects/recastnavigation.lua

29 lines
584 B
Lua
Raw Normal View History

2019-07-12 23:52:18 +02:00
solution "RecastDetour"
location "3rdparty/recast/_project/"
targetdir "3rdparty/recast/_build/"
language "C++"
2021-04-27 23:20:07 +02:00
configurations { "Release", "Debug" }
2019-07-12 23:52:18 +02:00
platforms { "x64" }
flags {
"FatalWarnings",
"NoPCH",
"NoExceptions",
"NoRTTI",
2021-04-27 23:20:07 +02:00
"NoEditAndContinue",
"ReleaseRuntime",
"Symbols"
2019-07-12 23:52:18 +02:00
}
project "Recast"
kind "StaticLib"
2019-08-05 21:03:05 +02:00
files {
"3rdparty/recast/Recast/Source/**.cpp",
"3rdparty/recast/Detour/Source/**.cpp"
}
includedirs {
2020-02-07 20:43:27 +01:00
"3rdparty/recast/Recast/Include/",
"3rdparty/recast/Detour/Include/"
2021-04-27 23:20:07 +02:00
}
configuration { "Release" }
flags { "Optimize" }