forked from bartvdbraak/blender
10 lines
183 B
Python
10 lines
183 B
Python
|
#!/usr/bin/python
|
||
|
|
||
|
Import('env')
|
||
|
|
||
|
sources = env.Glob('*.c')
|
||
|
|
||
|
incs = '.'
|
||
|
|
||
|
env.BlenderLib ( 'extern_wcwidth', sources, Split(incs), [], libtype=['extern','player'], priority=[10, 185])
|