2014-02-10 02:10:30 +01:00
|
|
|
Import('env')
|
|
|
|
|
|
|
|
env.add_source_files(env.drivers_sources,"*.cpp")
|
2016-06-07 19:59:33 +02:00
|
|
|
|
|
|
|
if (env.get('glew') == 'yes'):
|
|
|
|
env.add_source_files(env.drivers_sources,"glew.c")
|
|
|
|
env.Append(CPPFLAGS = ['-DGLEW_ENABLED'])
|
|
|
|
env.Append(CPPFLAGS = ['-DGLEW_STATIC'])
|
|
|
|
env.Append(CPPPATH = ['.'])
|
|
|
|
|
|
|
|
Export('env')
|