Changeset 1748


Ignore:
Timestamp:
05/06/10 11:07:39 (14 years ago)
Author:
Malte Marquarding
Message:

handle install of apps

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/asap-3.x/apps/SConscript

    r1665 r1748  
    1212myenv.Prepend( CPPPATH = ['#/build'] )
    1313myenv.Append(CCFLAGS = ["-DWCSLIB_GETWCSTAB"])
    14 myenv.Prepend(LIBS =  ['asap'])
     14myenv.Prepend(LIBS = ['asap'])
    1515
     16installs = []
    1617for cpp in cpps:
    17     myenv.Program(cpp)
    18 
     18    prog = myenv.Program(cpp)   
     19    installs.append(myenv.Install("$prefix/bin", prog))
     20myenv.Alias('install', installs)
Note: See TracChangeset for help on using the changeset viewer.