More updates to wscripts v8 building.

This allows me to hack on V8 without recompiling the whole thing.
v0.7.4-release
Ryan Dahl 2009-10-09 12:49:48 +02:00
parent d85724d741
commit 59b7a1bf26
1 changed files with 3 additions and 0 deletions

View File

@ -226,6 +226,9 @@ def v8_cmd(bld, variant):
def build_v8(bld):
v8 = bld.new_task_gen(
source = 'deps/v8/SConstruct '
+ bld.path.ant_glob('v8/include/*')
+ bld.path.ant_glob('v8/src/*'),
target = bld.env["staticlib_PATTERN"] % "v8",
rule = v8_cmd(bld, "default"),
before = "cxx",