forked from bartvdbraak/blender
eb186d18dc
Blender builds and links on Linux. For now without BGE and its player, but that will come. Priorities are still a mess, so expect more commits soon.
10 lines
203 B
Python
10 lines
203 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
|
|
incs = 'intern ../moto/include ../memutil'
|
|
|
|
env.BlenderLib ('bf_IK', sources, Split(incs), [], libtype=['intern'], priority=[100] )
|
|
|