forked from bartvdbraak/blender
ba97d47df4
* Changing linking order of a few libs, hopefully it solves a unresolved issue.
8 lines
173 B
Python
8 lines
173 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
incs = '.'
|
|
|
|
env.BlenderLib ('blender_CTR', sources, Split(incs) , [], libtype='intern', priority = 10 )
|