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:
authorJoseph Eagar <joeedh@gmail.com>2011-05-02 01:39:13 +0400
committerJoseph Eagar <joeedh@gmail.com>2011-05-02 01:39:13 +0400
commit088899236b0904c0a3d0fc5a92b0cb5ffd35cd17 (patch)
tree2d528fb9da3bba533e1ae42d7f2baa823d0d1f2e /extern
parent7cc98cbb0b6f2ef113a568532eb0921e77cc973d (diff)
=trunk=
Recommitted eltopo collision code (but disabled by default) with Genscher's permission. To use, you need to install liblapack and libblas
Diffstat (limited to 'extern')
-rw-r--r--extern/CMakeLists.txt4
-rw-r--r--extern/SConscript3
2 files changed, 7 insertions, 0 deletions
diff --git a/extern/CMakeLists.txt b/extern/CMakeLists.txt
index d74c6683f2c..c146d6dba83 100644
--- a/extern/CMakeLists.txt
+++ b/extern/CMakeLists.txt
@@ -31,6 +31,10 @@ if(WITH_BULLET)
add_subdirectory(bullet2)
endif()
+if(WITH_ELTOPO)
+ add_subdirectory(eltopo)
+endif()
+
if(WITH_BINRELOC)
add_subdirectory(binreloc)
endif()
diff --git a/extern/SConscript b/extern/SConscript
index bd73d71f123..061bd1ba6a3 100644
--- a/extern/SConscript
+++ b/extern/SConscript
@@ -4,6 +4,9 @@ Import('env')
SConscript(['glew/SConscript'])
+if env['WITH_BF_ELTOPO']:
+ SConscript(['eltopo/SConscript'])
+
if env['WITH_BF_BULLET']:
SConscript(['bullet2/src/SConscript'])