From 1a5998bc4ecaf23db4dbcf41d3872019944c74ac Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 2 Aug 2012 16:42:30 +0000 Subject: Remove old boolean operation module Carve proved it's a way to go, so the time have came to get rid of old boolean operation module which isn't used anymore. Still kept BOP interface but move it to BSP module. At some point it could be cleaned up further (like perhaps removed extra abstraction level or so) but would be nice to combine such a refactor with making BSP aware of NGons. Tested on linux using both cmake and scons, possible regressions on windows/osx. Would check windoes build just after commit. --- extern/CMakeLists.txt | 2 +- extern/SConscript | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'extern') diff --git a/extern/CMakeLists.txt b/extern/CMakeLists.txt index b5f94c06d4c..151df493062 100644 --- a/extern/CMakeLists.txt +++ b/extern/CMakeLists.txt @@ -68,7 +68,7 @@ if(WITH_LIBMV) add_subdirectory(libmv) endif() -if(WITH_CARVE) +if(WITH_MOD_BOOLEAN) add_subdirectory(carve) endif() diff --git a/extern/SConscript b/extern/SConscript index 67b74e9ee91..ce366deb38a 100644 --- a/extern/SConscript +++ b/extern/SConscript @@ -32,7 +32,7 @@ if env['WITH_BF_LZMA']: if env['WITH_BF_LIBMV']: SConscript(['libmv/SConscript']) -if env['WITH_BF_CARVE']: +if env['WITH_BF_BOOLEAN']: SConscript(['carve/SConscript']) if env['WITH_GHOST_XDND']: -- cgit v1.2.3