Changes between Version 12 and Version 13 of Debugging With Visual Studio


Ignore:
Timestamp:
Sep 3, 2020, 7:59:00 PM (5 years ago)
Author:
Fujii Hironori
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Debugging With Visual Studio

    v12 v13  
    11= Debugging WebKit =
    22
    3 1. Open `Source/WebKit/WebKit.vcxproj/WebKit.sln` using Visual Studio 2013 or Visual Studio Express (Desktop) 2013 or later.
     3There are three ways to debugging WebKit with Visual Studio.
     4Openning the generated WebKit.sln, openning an exe file directly, and attaching running Webkit.
    45
    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.
     61. Invoke build-webkit, and open `WebKitBuild\Release\WebKit.sln` using Visual Studio.
     7
     8If you get errors about not being able to find `.props` files, run `Tools/Scripts/update-webkit`, then close and relaunch Cygwin and Visual Studio.
    69
    7102. Set `WinLauncher` as the solution's `StartUp` project.
     
    1215
    1316Choose `Debug > Start Debugging`.
     17
     18In Ninja builds, there is no solution files. In such case, open the exe file directly.
     19
     20{{{
     21devenv -debugexe .\WebKitBuild\Debug\bin64\MiniBrowser.exe
     22}}}
     23
    1424
    1525= Debugging DumpRenderTree =