| OLD | NEW |
| 1 This directory contains Microsoft Visual Studio project files for including v8 | 1 This directory contains Microsoft Visual Studio project files for including v8 |
| 2 in a Visual Studio/Visual C++ Express solution. All these project files have | 2 in a Visual Studio/Visual C++ Express solution. All these project files have |
| 3 been created for use with Microsoft Visual Studio 2005. They can however also | 3 been created for use with Microsoft Visual Studio 2005. They can however also |
| 4 be used in both Visual Studio 2008 and Visual C++ 2008 Express Edition. When | 4 be used in both Visual Studio 2008 and Visual C++ 2008 Express Edition. When |
| 5 using the project files in the 2008 editions minor upgrades to the files will | 5 using the project files in the 2008 editions minor upgrades to the files will |
| 6 be performed by Visual Studio. | 6 be performed by Visual Studio. |
| 7 | 7 |
| 8 v8_base.vcproj | 8 v8_base.vcproj |
| 9 -------------- | 9 -------------- |
| 10 Base V8 library containing all the V8 code but no JavaScript library code. This | 10 Base V8 library containing all the V8 code but no JavaScript library code. |
| 11 includes third party code for string/number convertions (dtoa). | |
| 12 | 11 |
| 13 v8.vcproj | 12 v8.vcproj |
| 14 --------- | 13 --------- |
| 15 V8 library containing all the V8 and JavaScript library code embedded as source | 14 V8 library containing all the V8 and JavaScript library code embedded as source |
| 16 which is compiled as V8 is running. | 15 which is compiled as V8 is running. |
| 17 | 16 |
| 18 v8_mksnapshot.vcproj | 17 v8_mksnapshot.vcproj |
| 19 -------------------- | 18 -------------------- |
| 20 Executable v8_mksnapshot.exe for building a heap snapshot from a running V8. | 19 Executable v8_mksnapshot.exe for building a heap snapshot from a running V8. |
| 21 | 20 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 Finally a sample Visual Studio solution file for is provided. This solution file | 61 Finally a sample Visual Studio solution file for is provided. This solution file |
| 63 includes the two sample projects together with the V8 projects and with the | 62 includes the two sample projects together with the V8 projects and with the |
| 64 dependencies configured as described above. | 63 dependencies configured as described above. |
| 65 | 64 |
| 66 Python requirements | 65 Python requirements |
| 67 ------------------- | 66 ------------------- |
| 68 When using the Microsoft Visual Studio project files Python version 2.4 or later | 67 When using the Microsoft Visual Studio project files Python version 2.4 or later |
| 69 is required. Make sure that python.exe is on the path before running Visual | 68 is required. Make sure that python.exe is on the path before running Visual |
| 70 Studio. The use of Python is in the command script js2c.cmd which is used in the | 69 Studio. The use of Python is in the command script js2c.cmd which is used in the |
| 71 Custom Build Step for v8natives.js in the v8.vcproj project. | 70 Custom Build Step for v8natives.js in the v8.vcproj project. |
| OLD | NEW |