forked from bartvdbraak/blender
e8a1daaf9b
This commit implements drag-n-drop support from external applications into Blender. Used xdnd implementation from Paul Sheer.
11 lines
209 B
Python
11 lines
209 B
Python
#!/usr/bin/python
|
|
|
|
Import('env')
|
|
|
|
defs = ['HAVE_SYS_TIME_H']
|
|
sources = env.Glob('*.c')
|
|
|
|
incs = '.'
|
|
|
|
env.BlenderLib ( 'extern_xdnd', sources, Split(incs), defs, libtype=['extern','player'], priority=[10, 185])
|