Fix for missing updates of build scripts in the commit rB05cb63ecf750.

This commit is contained in:
Tamito Kajiyama 2014-08-20 13:35:45 +09:00
parent ed08597442
commit d2cc65cd1c
2 changed files with 7 additions and 0 deletions

View File

@ -264,6 +264,10 @@ if(WITH_BULLET)
add_definitions(-DWITH_BULLET)
endif()
if(WITH_FREESTYLE)
add_definitions(-DWITH_FREESTYLE)
endif()
# Build makesrna executable
blender_include_dirs(
.

View File

@ -141,6 +141,9 @@ if env['WITH_BF_COLLADA']:
if env['WITH_BF_CYCLES']:
defs.append('WITH_CYCLES')
if env['WITH_BF_FREESTYLE']:
defs.append('WITH_FREESTYLE')
if env['OURPLATFORM'] == 'linux':
cflags='-pthread'