Changeset 1406 for trunk/SConstruct
- Timestamp:
- 01/31/08 15:03:34 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SConstruct
r1396 r1406 53 53 ("rpfitslibdir", "The rpfits library location", None), 54 54 # ("rpfitsincdir", "The rpfits include location", None), 55 EnumOption("mode", "The type of build.", " debug",55 EnumOption("mode", "The type of build.", "release", 56 56 ["release","debug"], ignorecase=1), 57 57 ("makedist", … … 60 60 EnumOption("makedoc", "Build the userguide in specified format", 61 61 "none", 62 ["none", "pdf", "html"], ignorecase=1) 62 ["none", "pdf", "html"], ignorecase=1), 63 BoolOption("apps", "Build cpp apps", False) 63 64 ) 64 65 … … 83 84 84 85 # load casacore specific build flags 86 env.Tool('casaoptions', [casacoretooldir]) 87 env.AddCommonOptions(opts) 88 opts.Update(env) 85 89 env.Tool('casa', [casacoretooldir]) 86 90 … … 209 213 env.SConscript("doc/SConscript") 210 214 215 if env["apps"]: 216 env.SConscript("apps/SConscript") 217 211 218 if env.GetOption("clean"): 212 219 Execute(Delete(".sconf_temp"))
Note:
See TracChangeset
for help on using the changeset viewer.