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:
authorCampbell Barton <ideasman42@gmail.com>2008-12-21 06:11:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-12-21 06:11:32 +0300
commitf288a43457a707f767282909747897616171fc94 (patch)
treebd118ede3bfb65cc65ddd277c40fa7b040fb9313 /source/blender/nodes
parenteb1d0e139f5dba57b487cc5d9149774175da16bd (diff)
define WITH_CCGSUBSURF isnt used anymore
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/CMakeLists.txt2
-rw-r--r--source/blender/nodes/SConscript2
2 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/nodes/CMakeLists.txt b/source/blender/nodes/CMakeLists.txt
index 22e732d046b..4e9e4c2f84f 100644
--- a/source/blender/nodes/CMakeLists.txt
+++ b/source/blender/nodes/CMakeLists.txt
@@ -55,8 +55,6 @@ IF(WITH_FFMPEG)
ADD_DEFINITIONS(-DWITH_FFMPEG)
ENDIF(WITH_FFMPEG)
-ADD_DEFINITIONS(-DWITH_CCGSUBSURF)
-
BLENDERLIB(bf_nodes "${SRC}" "${INC}")
IF(WITH_VERSE)
diff --git a/source/blender/nodes/SConscript b/source/blender/nodes/SConscript
index 91ca6cd8c81..881479387b5 100644
--- a/source/blender/nodes/SConscript
+++ b/source/blender/nodes/SConscript
@@ -46,6 +46,4 @@ if env['WITH_BF_QUICKTIME']:
defs += ' WITH_QUICKTIME'
incs += ' ' + env['BF_QUICKTIME_INC']
-defs += ' WITH_CCGSUBSURF '
-
env.BlenderLib ( libname = 'nodes', sources = sources, includes = Split(incs), defines = Split(defs), libtype=['core','player'], priority = [65, 20] )