forked from bartvdbraak/blender
8 lines
175 B
Python
8 lines
175 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
incs = '.'
|
|
|
|
env.BlenderLib ('bf_intern_ctr', sources, Split(incs) , [], libtype='intern', priority = 10 )
|