2011-01-06 01:11:32 +00:00
|
|
|
# -*- python -*-
|
|
|
|
|
|
|
|
Import('env')
|
2011-01-29 14:06:48 +00:00
|
|
|
import sys
|
2011-01-06 01:11:32 +00:00
|
|
|
|
2011-01-29 14:06:48 +00:00
|
|
|
if sys.platform == 'darwin':
|
|
|
|
Return()
|
|
|
|
|
|
|
|
files = [
|
|
|
|
'clrun/clrun.c',
|
|
|
|
'clrun/dynamiclib.c',
|
|
|
|
'clrun/gencl.c',
|
|
|
|
'clrun/genclgl.c',
|
|
|
|
]
|
|
|
|
|
2011-01-06 01:11:32 +00:00
|
|
|
env['CPPPATH'] += ['#Externals/CLRun/include']
|
2011-03-03 04:35:03 +00:00
|
|
|
env['LIBS'] += env.StaticLibrary('clrun', files)
|