From 415b9d2e84505d06f6197a5282fc3782bf38fdc6 Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Mon, 12 Jan 2009 15:25:17 +0000 Subject: 2.5 / Nodes / SCons(mingw) * chop the nodes library into smaller parts - the addition of texture tree pushed the limits for scons/mingw - This should still have everything compile nicely, but please, maintainers of other build systems should check. The only interesting change for them is the difference in headers. --- source/blender/nodes/SConscript | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'source/blender/nodes/SConscript') diff --git a/source/blender/nodes/SConscript b/source/blender/nodes/SConscript index c7be20e3ec0..06e3a2606f0 100644 --- a/source/blender/nodes/SConscript +++ b/source/blender/nodes/SConscript @@ -2,9 +2,9 @@ Import ('env') sources = env.Glob('intern/*.c') -sources += env.Glob('intern/CMP_nodes/*.c') -sources += env.Glob('intern/SHD_nodes/*.c') -sources += env.Glob('intern/TEX_nodes/*.c') +cmpsources = env.Glob('intern/CMP_nodes/*.c') +shdsources = env.Glob('intern/SHD_nodes/*.c') +texsources = env.Glob('intern/TEX_nodes/*.c') incs = '. ./intern ' incs += '#/intern/guardedalloc ../editors/include ../blenlib ../makesdna' @@ -41,4 +41,7 @@ if env['WITH_BF_QUICKTIME']: defs += ' WITH_CCGSUBSURF ' -env.BlenderLib ( libname = 'bf_nodes', sources = sources, includes = Split(incs), defines = Split(defs), libtype=['core'], priority = [175] ) +env.BlenderLib ( libname = 'bf_nodes', sources = sources, includes = Split(incs), defines = Split(defs), libtype=['core'], priority = [190] ) +env.BlenderLib ( libname = 'bf_cmpnodes', sources = sources, includes = Split(incs), defines = Split(defs), libtype=['core'], priority = [175] ) +env.BlenderLib ( libname = 'bf_shdnodes', sources = sources, includes = Split(incs), defines = Split(defs), libtype=['core'], priority = [175] ) +env.BlenderLib ( libname = 'bf_texnodes', sources = sources, includes = Split(incs), defines = Split(defs), libtype=['core'], priority = [175] ) -- cgit v1.2.3