SCons: Fix compilation error with booleans disabled

This commit is contained in:
Sergey Sharybin
2014-10-15 18:51:22 +06:00
parent 63dc2e9b74
commit 591dc63eb1

View File

@@ -52,6 +52,9 @@ defs = []
if env['WITH_BF_BOOLEAN']:
incs.append('#/extern/carve')
defs.append('WITH_MOD_BOOLEAN')
else:
from os import path
sources.remove(path.join('intern', 'MOD_boolean_util.c'))
if env['WITH_BF_REMESH']:
incs.append('#/intern/dualcon')