Skip to content

Instantly share code, notes, and snippets.

@pensono
Last active November 28, 2022 04:01
Show Gist options
  • Select an option

  • Save pensono/fd88845f1d21e8a44700 to your computer and use it in GitHub Desktop.

Select an option

Save pensono/fd88845f1d21e8a44700 to your computer and use it in GitHub Desktop.
build skia library on windows 64 bit
set PATH=T:\depot_tools;%PATH%
set GYP_GENERATORS=ninja
pushd skia && ^
cmd /C python gyp_skia ^
-Dskia_angle=1 ^
-Dskia_arch_type=x86_64 ^
-Dskia_warnings_as_errors=0 && ^
ninja -C out\Release_64 SampleApp && ^
popd
@pensono
Copy link
Author

pensono commented Dec 28, 2015

Ninja should be running in the Release_64 directory. Same goes for debug builds.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment