dolphin/Externals/GLew/SConscript

16 lines
266 B
Python

# -*- python -*-
Import('env')
if env.has_key('shared_glew') and env['shared_glew']:
Return()
files = [
'src/glew.c',
'src/glewinfo.c',
'src/visualinfo.c',
]
env.StaticLibrary(env['local_libs'] + "GLEW", files)
env['CPPPATH'] += ['#Externals/GLew/include']