Changeset 2624 for trunk/SConstruct
- Timestamp:
- 08/07/12 15:52:39 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SConstruct
r2580 r2624 174 174 pth = os.path.join(p, "include", "casacore") 175 175 if os.path.exists(pth): 176 libp th = os.path.join(p, LIBDIR)176 libpath = os.path.join(p, LIBDIR) 177 177 conf.env.AppendUnique(CPPPATH=[pth]) 178 178 break … … 182 182 "casa_scimath_f", "casa_tables", "casa_casa"] 183 183 if conf.env["casacorestatic"]: 184 libs = [ env.File(os.path.join(libp th, "lib"+lib+".a")) \184 libs = [ env.File(os.path.join(libpath, "lib"+lib+".a")) \ 185 185 for lib in cclibs ] 186 186 else: 187 conf.env.AppendUnique(LIBPATH=libp th)187 conf.env.AppendUnique(LIBPATH=libpath) 188 188 if not conf.CheckLibWithHeader("casa_casa", "casa/aips.h", 189 189 language='c++', autoadd=0):
Note:
See TracChangeset
for help on using the changeset viewer.