No longer duplicate sources to builddir, only build objects in it.
This commit is contained in:
parent
8eb77992e0
commit
00177d437f
1 changed files with 2 additions and 2 deletions
|
@ -248,7 +248,7 @@ else:
|
|||
have_server_prereqs = True
|
||||
have_test_prereqs = True
|
||||
|
||||
env.Append(CPPPATH = ["#/src", "#/"])
|
||||
env.Append(CPPPATH = ["#/", "."])
|
||||
|
||||
|
||||
have_msgfmt = env["MSGFMT"]
|
||||
|
@ -351,7 +351,7 @@ else:
|
|||
if build == "release" : build_suffix = "" + env["PROGSUFFIX"]
|
||||
else : build_suffix = "-" + build + env["PROGSUFFIX"]
|
||||
Export("build_suffix")
|
||||
SConscript("src/SConscript", build_dir = build_dir, exports = "env")
|
||||
SConscript("src/SConscript", build_dir = build_dir, exports = "env", duplicate = False)
|
||||
Import(binaries + ["sources"])
|
||||
binary_nodes = map(eval, binaries)
|
||||
all = env.Alias("all", map(Alias, binaries))
|
||||
|
|
Loading…
Add table
Reference in a new issue