tests/SConscript
author Radek Brich <radek.brich@devl.cz>
Tue, 26 Jul 2016 17:41:36 +0200
branchpyrit
changeset 103 3b3257a410fe
parent 93 96d65f841791
permissions -rw-r--r--
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)