Changes in trunk/src/SConscript [1941:1819]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/SConscript
- Property svn:mergeinfo changed
/branches/asap4casa3.1.0/src/SConscript removed
r1941 r1819 8 8 cpps = env.SGlob("*.cpp") 9 9 pycpps = env.SGlob("python_*.cpp") 10 for pf in pycpps: 11 cpps.remove(pf) 10 for pf in pycpps: cpps.remove(pf) 12 11 13 12 # location of libcasav.a … … 19 18 myenv.Prepend( LIBS = ['asap'] ) 20 19 21 shenv = myenv.Clone()22 pyrapdir = shenv.get("pyrapint", None)23 if pyrapdir:24 shenv.PrependUnique(CPPPATH=pyrapdir)25 pycpps += shenv.Glob('%s/pyrap/*/*.cc' % pyrapdir)26 20 # Finally create the library for the module 27 if not hasattr( shenv, "LoadableModule"):28 shenv.LoadableModule = shenv.SharedLibrary29 so = shenv.LoadableModule( target = "_asap.so", source = pycpps, SHLIBSUFFIX="" )30 #test = shenv.Program("test", cpps)21 if not hasattr(myenv, "LoadableModule"): 22 myenv.LoadableModule = myenv.SharedLibrary 23 so = myenv.LoadableModule( target = "_asap.so", source = pycpps, SHLIBSUFFIX="" ) 24 #test = myenv.Program("test", cpps) 31 25 Return("so") 32 26 - Property svn:mergeinfo changed
Note:
See TracChangeset
for help on using the changeset viewer.