Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.txt | D | 03-May-2024 | 3 KiB | 71 | 56 | |
arm.vsprops | D | 03-May-2024 | 433 | 15 | 14 | |
common.vsprops | D | 03-May-2024 | 1 KiB | 35 | 34 | |
d8.vcproj | D | 03-May-2024 | 3.5 KiB | 194 | 193 | |
d8_arm.vcproj | D | 03-May-2024 | 3.7 KiB | 194 | 193 | |
d8_x64.vcproj | D | 03-May-2024 | 3.8 KiB | 210 | 209 | |
d8js2c.cmd | D | 03-May-2024 | 270 | 7 | 6 | |
debug.vsprops | D | 03-May-2024 | 384 | 18 | 17 | |
ia32.vsprops | D | 03-May-2024 | 449 | 18 | 17 | |
js2c.cmd | D | 03-May-2024 | 597 | 7 | 6 | |
release.vsprops | D | 03-May-2024 | 510 | 25 | 24 | |
v8.sln | D | 03-May-2024 | 6.2 KiB | 102 | 101 | |
v8.vcproj | D | 03-May-2024 | 4.7 KiB | 228 | 227 | |
v8_arm.sln | D | 03-May-2024 | 4.4 KiB | 75 | 74 | |
v8_arm.vcproj | D | 03-May-2024 | 4.9 KiB | 228 | 227 | |
v8_base.vcproj | D | 03-May-2024 | 26.8 KiB | 1,309 | 1,307 | |
v8_base_arm.vcproj | D | 03-May-2024 | 25.2 KiB | 1,239 | 1,238 | |
v8_base_x64.vcproj | D | 03-May-2024 | 26.5 KiB | 1,301 | 1,299 | |
v8_cctest.vcproj | D | 03-May-2024 | 4.7 KiB | 266 | 265 | |
v8_cctest_arm.vcproj | D | 03-May-2024 | 4.3 KiB | 250 | 249 | |
v8_cctest_x64.vcproj | D | 03-May-2024 | 4.5 KiB | 258 | 257 | |
v8_mksnapshot.vcproj | D | 03-May-2024 | 2.4 KiB | 146 | 145 | |
v8_mksnapshot_x64.vcproj | D | 03-May-2024 | 2.4 KiB | 146 | 145 | |
v8_process_sample.vcproj | D | 03-May-2024 | 2.4 KiB | 146 | 145 | |
v8_process_sample_arm.vcproj | D | 03-May-2024 | 2.6 KiB | 146 | 145 | |
v8_process_sample_x64.vcproj | D | 03-May-2024 | 2.7 KiB | 162 | 161 | |
v8_shell_sample.vcproj | D | 03-May-2024 | 2.5 KiB | 148 | 147 | |
v8_shell_sample_arm.vcproj | D | 03-May-2024 | 2.7 KiB | 148 | 147 | |
v8_shell_sample_x64.vcproj | D | 03-May-2024 | 2.8 KiB | 164 | 163 | |
v8_snapshot.vcproj | D | 03-May-2024 | 2.4 KiB | 143 | 142 | |
v8_snapshot_cc.vcproj | D | 03-May-2024 | 2.2 KiB | 93 | 92 | |
v8_snapshot_cc_x64.vcproj | D | 03-May-2024 | 2.2 KiB | 93 | 92 | |
v8_snapshot_x64.vcproj | D | 03-May-2024 | 2.4 KiB | 143 | 142 | |
v8_x64.sln | D | 03-May-2024 | 6.1 KiB | 102 | 101 | |
v8_x64.vcproj | D | 03-May-2024 | 4.7 KiB | 228 | 227 | |
x64.vsprops | D | 03-May-2024 | 477 | 19 | 18 |
README.txt
1This directory contains Microsoft Visual Studio project files for including v8 2in a Visual Studio/Visual C++ Express solution. All these project files have 3been created for use with Microsoft Visual Studio 2005. They can however also 4be used in both Visual Studio 2008 and Visual C++ 2008 Express Edition. When 5using the project files in the 2008 editions minor upgrades to the files will 6be performed by Visual Studio. 7 8v8_base.vcproj 9-------------- 10Base V8 library containing all the V8 code but no JavaScript library code. 11 12v8.vcproj 13--------- 14V8 library containing all the V8 and JavaScript library code embedded as source 15which is compiled as V8 is running. 16 17v8_mksnapshot.vcproj 18-------------------- 19Executable v8_mksnapshot.exe for building a heap snapshot from a running V8. 20 21v8_snapshot_cc.vcproj 22--------------------- 23Uses v8_mksnapshot.exe to generate snapshot.cc, which is used in 24v8_snapshot.vcproj. 25 26v8_snapshot.vcproj 27------------------ 28V8 library containing all the V8 and JavaScript library code embedded as a heap 29snapshot instead of source to be compiled as V8 is running. Using this library 30provides significantly faster startup time than v8.vcproj. 31 32The property sheets common.vsprops, debug.vsprops and release.vsprops contains 33most of the configuration options and are inhireted by the project files 34described above. The location of the output directory used are defined in 35common.vsprops. 36 37With regard to Platform SDK version V8 has no specific requriments and builds 38with either what is supplied with Visual Studio 2005 or the latest Platform SDK 39from Microsoft. 40 41When adding these projects to a solution the following dependencies needs to be 42in place: 43 44 v8.vcproj depends on v8_base.vcproj 45 v8_mksnapshot.vcproj depends on v8.vcproj 46 v8_snapshot_cc.vcproj depends on v8_mksnapshot.vcproj 47 v8_snapshot.vcproj depends on v8_snapshot_cc.vcproj and v8_base.vcproj 48 49A project which uses V8 should then depend on v8_snapshot.vcproj. 50 51If V8 without snapshot if preferred only v8_base.vcproj and v8.vcproj are 52required and a project which uses V8 should depend on v8.vcproj. 53 54Two sample project files are available as well. These are v8_shell_sample.vcproj 55for building the sample in samples\shell.cc and v8_process_sample.vcproj for 56building the sample in samples\process.cc. Add either of these (or both) to a 57solution with v8_base, v8, v8_mksnapshot and v8_snapshot set up as described 58solution with v8_base, v8, v8_mksnapshot and v8_snapshot set up as described 59above and have them depend on v8_snapshot. 60 61Finally a sample Visual Studio solution file for is provided. This solution file 62includes the two sample projects together with the V8 projects and with the 63dependencies configured as described above. 64 65Python requirements 66------------------- 67When using the Microsoft Visual Studio project files Python version 2.4 or later 68is required. Make sure that python.exe is on the path before running Visual 69Studio. The use of Python is in the command script js2c.cmd which is used in the 70Custom Build Step for v8natives.js in the v8.vcproj project. 71