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('env lib')
myenv = env.Clone()
myenv.Append(LIBPATH='#build/lib')
myenv.Prepend(LIBS=['pyrit'])
l = []
l.append( myenv.Program(['vector.cc']) )
myenv.Alias('tests', l)