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:
Diffstat (limited to 'source/creator/SConscript')
-rw-r--r--source/creator/SConscript10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/creator/SConscript b/source/creator/SConscript
index 82059c846e6..276070803ea 100644
--- a/source/creator/SConscript
+++ b/source/creator/SConscript
@@ -3,8 +3,8 @@ Import ('env')
sources = ['creator.c']
-if env['WITH_BF_UNIT_TEST']:
- sources += env.Glob('tests/*.c')
+# if env['BF_UNIT_TEST']:
+# sources += env.Glob('tests/*.c')
incs = '#/intern/guardedalloc ../blender/blenlib ../blender/blenkernel'
incs += ' ../blender/editors/include ../blender/blenloader ../blender/imbuf'
@@ -15,9 +15,6 @@ incs += ' ' + env['BF_OPENGL_INC']
defs = []
-if env['WITH_BF_UNIT_TEST']:
- defs.append('WITH_UNIT_TEST')
-
if env['WITH_BF_QUICKTIME']:
incs += ' ' + env['BF_QUICKTIME_INC']
defs.append('WITH_QUICKTIME')
@@ -39,4 +36,7 @@ if env['WITH_BF_PYTHON']:
else:
defs.append('DISABLE_PYTHON')
+# if env['BF_UNIT_TEST']:
+# defs.append('UNIT_TEST')
+
env.BlenderLib ( libname = 'bf_creator', sources = sources, includes = Split(incs), defines = defs, libtype='core', priority = 0 )