source: branches/asap-3.x/apps/SConscript @ 1750

Last change on this file since 1750 was 1750, checked in by Malte Marquarding, 14 years ago

Also need to add asap2to3 to binary installer

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