forked from bartvdbraak/blender
d5fde6c48b
Makes text editors identify SConscripts as Python, and syntax highlight properly.
19 lines
656 B
Python
19 lines
656 B
Python
#!/usr/bin/python
|
|
Import ('user_options_dict')
|
|
Import ('library_env')
|
|
|
|
kernel_env = library_env.Copy ()
|
|
|
|
source_files = ['gen_messaging/intern/messaging.c',
|
|
'gen_system/GEN_HashedPtr.cpp',
|
|
'gen_system/GEN_Matrix4x4.cpp',
|
|
'gen_system/SYS_SingletonSystem.cpp',
|
|
'gen_system/SYS_System.cpp']
|
|
|
|
kernel_env.Append (CPPPATH = ['gen_messaging',
|
|
'gen_system',
|
|
'#/intern/string',
|
|
'#/intern/moto/include'])
|
|
|
|
kernel_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_kernel', source=source_files)
|