This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/blenkernel/bad_level_call_stubs/SConscript
Kester Maddock 4b544c75c0 blenderplayer target for SCons.
Would someone on MacOSX please check the bundle creation.
2004-06-04 12:58:46 +00:00

28 lines
1012 B
Python

#!/usr/bin/python
Import ('user_options_dict')
Import ('library_env')
blenkernel_blc_env = library_env.Copy ()
source_files = ['stubs.c'
]
blenkernel_blc_env.Append (CPPPATH = ['.',
'..',
'../../render/extern/include',
'#/intern/iksolver/extern',
'../../blenlib',
'../../include',
'../../makesdna'])
"""
,
'#/intern/guardedalloc',
'../python',
'../imbuf',
'../avi',
'../blenloader']
"""
if user_options_dict['USE_INTERNATIONAL'] == 1:
blenkernel_blc_env.Append (CPPDEFINES = 'WITH_FREETYPE2')
blenkernel_blc_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_blenkernel_blc', source=source_files)