Updated to compile:
- KdTree+Octree: max_depth changed to static const (this should be configured at compile time)
- wget tool replaced by curl, which is now more widespread
- added CMakeLists (to eventually replace SCons)
- various fixes
+ − Import('pymodule cc')
+ −
+ − env = Environment()
+ − env.Append(BUILDERS = {'Copy':Builder(action=Copy('$TARGET','$SOURCE'), single_source=True)})
+ − files = [
+ − 'boxes.py', 'buddha.py', 'bunny.py', 'car.py', 'dragon.py',
+ − 'spheres_ao.py', 'spheres_glass.py', 'spheres_shadow.py',
+ − 'triangles_monkey.py', 'triangles_sphere.py',
+ − 'objreader.py', 'plyreader.py', 'lworeader.py',
+ − 'vector.py', 'render_nff.py', 'demo_PIL.py',
+ − 'texture.py', 'bench.py']
+ −
+ − l = []
+ − for file in files:
+ − l.append( env.Copy('#build/demos/'+file, file) )
+ −
+ − import os
+ − l.append( env.Copy('#build/demos/'+str(pymodule[0]).split(os.sep)[-1], str(pymodule[0])) )
+ −
+ − env.Alias('python-demos', l)
+ −
+ − if cc == 'msvc':
+ − # MS Visual Studio Project
+ − vcprojmisc = []
+ − for file in files:
+ − vcprojmisc += ['demos/' + file]
+ − vcproj = env.MSVSProject(
+ − auto_build_solution=0,
+ − target = '#pyrit_demos' + env['MSVSPROJECTSUFFIX'],
+ − misc = vcprojmisc,
+ − buildtarget = 'python-demos',
+ − variant = 'Release')
+ −
+ − Return('vcproj')