source: trunk/external-alma/SConscript @ 3034

Last change on this file since 3034 was 3034, checked in by Malte Marquarding, 9 years ago

Remove reference to libpryap (scons). use casacore_python from now on

File size: 404 bytes
Line 
1import glob
2Import("env")
3
4sources = []
5sources += glob.glob("atnf/PKSIO/*.cc")
6sources += glob.glob("atnf/pks/pks_maths.cc")
7
8sources2 = glob.glob("components/SpectralComponents/*.cc")
9
10env.AppendUnique(CPPPATH=[Dir(".").abspath])
11atnflib=env.Library("atnf", sources)
12complib=env.Library("oldcomponents", sources2)
13env.AppendUnique(LIBPATH=[Dir(".").abspath])
14env.Prepend(LIBS=["atnf","oldcomponents"])
Note: See TracBrowser for help on using the repository browser.