Browse Source

More updates to wscripts v8 building.

This allows me to hack on V8 without recompiling the whole thing.
v0.7.4-release
Ryan Dahl 15 years ago
parent
commit
59b7a1bf26
  1. 3
      wscript

3
wscript

@ -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",

Loading…
Cancel
Save