Changes between Version 12 and Version 13 of Debugging With Visual Studio
- Timestamp:
- Sep 3, 2020, 7:59:00 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Debugging With Visual Studio
v12 v13 1 1 = Debugging WebKit = 2 2 3 1. Open `Source/WebKit/WebKit.vcxproj/WebKit.sln` using Visual Studio 2013 or Visual Studio Express (Desktop) 2013 or later. 3 There are three ways to debugging WebKit with Visual Studio. 4 Openning the generated WebKit.sln, openning an exe file directly, and attaching running Webkit. 4 5 5 If you get errors about not being able to find `.props` files, run `Tools/Scripts/update-webkit`, then close and relaunch Cygwin and Visual Studio or Visual Studio Express. 6 1. Invoke build-webkit, and open `WebKitBuild\Release\WebKit.sln` using Visual Studio. 7 8 If you get errors about not being able to find `.props` files, run `Tools/Scripts/update-webkit`, then close and relaunch Cygwin and Visual Studio. 6 9 7 10 2. Set `WinLauncher` as the solution's `StartUp` project. … … 12 15 13 16 Choose `Debug > Start Debugging`. 17 18 In Ninja builds, there is no solution files. In such case, open the exe file directly. 19 20 {{{ 21 devenv -debugexe .\WebKitBuild\Debug\bin64\MiniBrowser.exe 22 }}} 23 14 24 15 25 = Debugging DumpRenderTree =