Last active
November 28, 2022 04:01
-
-
Save pensono/fd88845f1d21e8a44700 to your computer and use it in GitHub Desktop.
build skia library on windows 64 bit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ninja should be running in the Release_64 directory. Same goes for debug builds.