source: trunk/apps/SConscript @ 2500

Last change on this file since 2500 was 2500, checked in by Malte Marquarding, 12 years ago

no need for asp2to3 anymore. it's done implicitly

File size: 425 bytes
RevLine 
[1407]1import os,glob,shutil
2
3# import root environment
4Import( "env")
[1442]5myenv = env.Clone()
[1407]6
7# gather cpp files
[2500]8cpps = []#env.SGlob("*.cpp")
[1407]9
[1665]10# location of libasap.a
[1407]11myenv.Prepend( LIBPATH = ['#/build'] )
12myenv.Prepend( CPPPATH = ['#/build'] )
13myenv.Append(CCFLAGS = ["-DWCSLIB_GETWCSTAB"])
[1749]14myenv.Prepend(LIBS = ['asap'])
[1407]15
[1749]16installs = []
[1407]17for cpp in cpps:
[1749]18    prog = myenv.Program(cpp)   
[2500]19    myenv.QInstall("#/$stagedir/bin", prog)
[1752]20
Note: See TracBrowser for help on using the repository browser.