demos/SConscript
branchpyrit
changeset 63 440e1ae80459
parent 62 07c2f8084719
child 65 242839c6d27d
equal deleted inserted replaced
62:07c2f8084719 63:440e1ae80459
     6 	'boxes.py', 'buddha.py', 'bunny.py', 'car.py', 'dragon.py',
     6 	'boxes.py', 'buddha.py', 'bunny.py', 'car.py', 'dragon.py',
     7 	'spheres_ao.py', 'spheres_glass.py', 'spheres_shadow.py',
     7 	'spheres_ao.py', 'spheres_glass.py', 'spheres_shadow.py',
     8 	'triangles_monkey.py', 'triangles_sphere.py',
     8 	'triangles_monkey.py', 'triangles_sphere.py',
     9 	'objreader.py', 'plyreader.py', 'lworeader.py']
     9 	'objreader.py', 'plyreader.py', 'lworeader.py']
    10 
    10 
       
    11 l = []
    11 for file in files:
    12 for file in files:
    12 	env.Copy('#build/demos/'+file, file)
    13 	l.append( env.Copy('#build/demos/'+file, file) )
    13 
    14 
    14 env.Copy('#build/demos/'+str(pymodule[0]).split('/')[-1], str(pymodule[0]))
    15 l.append( env.Copy('#build/demos/'+str(pymodule[0]).split('/')[-1], str(pymodule[0])) )
       
    16 
       
    17 env.Alias('python-demos', l)