Added option to use new subsurf module added by Daniel Dunbar. Simply add:

export NAN_NEW_SUBSURF=true

to your user-def.mk file.
This commit is contained in:
Chris Burt 2005-03-21 22:32:02 +00:00
parent 86d84f54c8
commit 2ec686720b

@ -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 ---------------------------------------------------