Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/extern
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-09-20 21:06:17 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-09-20 21:06:17 +0400
commit9d1b4b63b33b77505f4399a4db4f462f5b1fd1eb (patch)
tree31d83fbd17c4790211707a3ce13c78b664647c23 /extern
parent0169079bd1c3ce69690153321fb09c3647b9d930 (diff)
Fix for recent commit:
- Some declarations after statement left. - Do not use static inline functions in MOD_navmesh. It produces errors with msvc and not sure it's actually helps -- optimizer should make it inlined itself.
Diffstat (limited to 'extern')
-rw-r--r--extern/recastnavigation/SConscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/extern/recastnavigation/SConscript b/extern/recastnavigation/SConscript
index be10c33c327..2c15e518eb1 100644
--- a/extern/recastnavigation/SConscript
+++ b/extern/recastnavigation/SConscript
@@ -3,6 +3,7 @@
Import('env')
sources = env.Glob('Recast/Source/*.cpp') + env.Glob('Detour/Source/*.cpp')
+sources += ['recast-capi.cpp']
incs = 'Recast/Include Detour/Include'