projects
/
blender-staging.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Attempt to fix mingw 64 bit compile error.
[blender-staging.git]
/
intern
/
bsp
/
SConscript
1
#!/usr/bin/python
2
Import ('env')
3
4
sources = env.Glob('intern/*.cpp')
5
6
incs = 'intern ../container ../moto/include ../memutil ../guardedalloc'
7
8
env.BlenderLib ('bf_intern_bsp', sources, Split(incs), [], libtype=['core','player'], priority=[200,100] )
9