source: trunk/apps/SConscript @ 1407

Last change on this file since 1407 was 1407, checked in by Malte Marquarding, 16 years ago

added apps directory for c++ binaries e.g. test/debug programs

File size: 354 bytes
Line 
1import os,glob,shutil
2
3# import root environment
4Import( "env")
5myenv = env.Copy()
6
7# gather cpp files
8cpps = env.SGlob("*.cpp")
9
10# location of libcasav.a
11myenv.Prepend( LIBPATH = ['#/build'] )
12myenv.Prepend( CPPPATH = ['#/build'] )
13myenv.Append(CCFLAGS = ["-DWCSLIB_GETWCSTAB"])
14myenv.Prepend(LIBS =  ['asap'])
15
16for cpp in cpps:
17    myenv.Program(cpp)
18
Note: See TracBrowser for help on using the repository browser.