Normally you should run tests in Debug mode (SK_DEBUG is defined, and debug
symbols are included in the binary). If you would like to build the Release
version instead:
ninja -C out\Release dm
out\Release\dm
Build and run tests in the Visual Studio IDE
--------------------------------------------
* Generate the Visual Studio project files by running gyp_skia as described above
* Open a File Explorer window pointing at the %SKIA_CHECKOUT_DIR%\out\gyp directory
* Double-click on dm.sln to start Visual Studio and load the project
* When Visual Studio starts, you may see an error dialog stating that "One or more projects in the solution were not loaded correctly"... but there's probably nothing to worry about.
* In the "Solution Explorer" window, right-click on the "dm" project and select "Set as StartUp Project".
* In the "Debug" menu, click on "Start Debugging" (or just press F5). If you get a dialog saying that the project is out of date, click on "Yes" to rebuild it.
* Once the build is complete, you should see console output from the tests in the "Output" window at lower right.
Build and run SampleApp in Visual Studio
----------------------------------------
* Generate the Visual Studio project files by running gyp_skia as described above
* Open a File Explorer window pointing at the %SKIA_INSTALLDIR%\trunk\out\gyp directory
* Double-click on SampleApp.sln
* When Visual Studio starts, you may see an error dialog stating that "One or more projects in the solution were not loaded correctly"... but there's probably nothing to worry about.
* In the "Debug" menu, click on "Start Debugging" (or just press F5). If you get a dialog saying that the project is out of date, click on "Yes" to rebuild it.
* Once the build is complete, you should see a window with various example graphics. To move through the sample app, use the following keypresses:
* right-arrow key: cycle through different test pages
* left-arrow key: cycle through rendering methods for each test page
* other keys are defined in SampleApp.cpp’s SampleWindow::onHandleKey() and SampleWindow::onHandleChar() methods
Build and run nanobench (performance testbench) from the command line