|
# -*- python -*-
|
|
|
|
Import('env')
|
|
import sys
|
|
|
|
if sys.platform == 'darwin':
|
|
Return()
|
|
|
|
files = [
|
|
'clrun/clrun.c',
|
|
'clrun/dynamiclib.c',
|
|
'clrun/gencl.c',
|
|
'clrun/genclgl.c',
|
|
]
|
|
|
|
env['CPPPATH'] += ['#Externals/CLRun/include']
|
|
env['LIBS'] += env.StaticLibrary('clrun', files)
|