source: trunk/external-alma/SConscript @ 3132

Last change on this file since 3132 was 3132, checked in by Malte Marquarding, 7 years ago

add c++11 flag

File size: 439 bytes
RevLine 
[1325]1import glob
2Import("env")
3
4sources = []
5sources += glob.glob("atnf/PKSIO/*.cc")
6sources += glob.glob("atnf/pks/pks_maths.cc")
[2980]7
[3034]8sources2 = glob.glob("components/SpectralComponents/*.cc")
[2980]9
[1325]10env.AppendUnique(CPPPATH=[Dir(".").abspath])
11atnflib=env.Library("atnf", sources)
[3034]12complib=env.Library("oldcomponents", sources2)
[3132]13env.Append(CCFLAGS=['-std=c++11'])
[1330]14env.AppendUnique(LIBPATH=[Dir(".").abspath])
[3034]15env.Prepend(LIBS=["atnf","oldcomponents"])
Note: See TracBrowser for help on using the repository browser.