* add support for building redcode on win32/msvc, but disabled for now, as there are linking problems
- I cleaned the redcode sconscript - the copying of headers within the source tree is not a clean solution
This needs to be fixed later on. For now, lets use redcode from extern/ until a better way is found.
17 lines
364 B
Python
17 lines
364 B
Python
#!/usr/bin/python
|
|
|
|
import sys
|
|
import os
|
|
import shutil
|
|
|
|
Import('env')
|
|
|
|
sources = env.Glob('*.c')
|
|
incs = '. ../libopenjpeg'
|
|
|
|
env.BlenderLib ( libname='extern_redcode',
|
|
sources=sources, includes=Split(incs),
|
|
defines=[],
|
|
libtype=['core','intern','player'],
|
|
priority=[10, 5, 300], compileflags = [])
|