summaryrefslogtreecommitdiff
path: root/Externals/CLRun/SConscript
blob: 30be41c43173851fcdef83e4970b7b93bd6c3d32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- 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)