forked from bartvdbraak/blender
57d83522a2
compile with non-standard paths.
31 lines
874 B
Python
31 lines
874 B
Python
#!/usr/bin/python
|
|
import sys
|
|
import os
|
|
|
|
Import('env')
|
|
|
|
# Import the C flags set in the SConstruct file
|
|
#Import ('cflags')
|
|
#Import ('defines')
|
|
#Import ('user_options_dict')
|
|
|
|
#if sys.platform=='linux2' or sys.platform=='linux-i386':
|
|
# ftgl_env.Append (CCFLAGS = ['-O2', '-ansi'])
|
|
#elif sys.platform=='win32':
|
|
#ftgl_env.Append (CCFLAGS = ['/O2'])
|
|
#elif sys.platform=='sunos':
|
|
# ftgl_env.Append (CCFLAGS = ['Xc', '-v', '-fast'])
|
|
#elif sys.platform=='darwin':
|
|
# ftgl_env.Append (CCFLAGS = ['-O2', '-pipe', '-fPIC', '-funsigned-char', '-ffast-math'])
|
|
#else:
|
|
# ftgl_env.Append (CCFLAGS = cflags)
|
|
|
|
#ftgl_env.Append (CPPDEFINES = defines)
|
|
|
|
incs = 'include src ' + env['BF_FREETYPE_INC'] + ' ' + env['BF_OPENGL_INC']
|
|
defs = ''
|
|
|
|
sources = env.Glob('src/*.cpp')
|
|
|
|
env.BlenderLib ( 'extern_ftgl', sources, Split(incs), Split(defs), libtype=['international','player'], priority=[5, 210])
|