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
diff options
context:
space:
mode:
authorChris Burt <desoto@exenex.com>2005-03-22 01:32:02 +0300
committerChris Burt <desoto@exenex.com>2005-03-22 01:32:02 +0300
commit2ec686720bc99baa270129c3a4a610bec612c4a1 (patch)
tree79198228cba14d6e0dc9bd0eac76e1cdfca1a03f /source/nan_compile.mk
parent86d84f54c863e08f2167cb01cc3914050e484fbc (diff)
Added option to use new subsurf module added by Daniel Dunbar. Simply add:
export NAN_NEW_SUBSURF=true to your user-def.mk file.
Diffstat (limited to 'source/nan_compile.mk')
-rw-r--r--source/nan_compile.mk7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/nan_compile.mk b/source/nan_compile.mk
index 2e3d9ae245c..1b2d41d3d24 100644
--- a/source/nan_compile.mk
+++ b/source/nan_compile.mk
@@ -58,7 +58,12 @@ DBG_CCFLAGS += -g
# Support for new transform code ---------------------------------------
ifeq ($(NAN_NEW_TRANSFORM), true)
- CPPFLAGS += -DNEWTRANSFORM
+ CPPFLAGS += -DNEWTRANSFORM
+endif
+
+# Support for new subsurf code -----------------------------------------
+ifeq ($(NAN_NEW_SUBSURF), true)
+ CPPFLAGS += -DUSE_CCGSUBSURFLIB
endif
# OS dependent parts ---------------------------------------------------