tests/SConscript
author Radek Brich <radek.brich@devl.cz>
Sun, 31 May 2009 16:53:05 +0200
branchpyrit
changeset 99 f3abdaa2e8fb
parent 93 96d65f841791
permissions -rw-r--r--
build script: updated for latest SCons, moved config.h to build/, help and clean targets does not run configure any more, fixed GCC check, added check for zlib

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)