Changes between Version 98 and Version 99 of BuildingCairoOnWindows
- Timestamp:
- Jun 19, 2023, 5:29:24 PM (18 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildingCairoOnWindows
v98 v99 28 28 git config --global core.autocrlf input 29 29 }}} 30 31 == winget == 32 33 If you prefer [https://learn.microsoft.com/en-us/windows/package-manager/winget/ winget] to Chocolatey, you can use it. 34 Here is the one-liner to install all tools: 35 36 {{{ 37 "Git.Git Kitware.CMake Ninja-build.Ninja Python.Python.3.11 RubyInstallerTeam.Ruby.3.1 ApacheFriends.Xampp.8.2 GnuWin32.Gperf" -split " " |% { winget install --scope=machine --id $_ } 38 }}} 39 40 If `--scope=machine` isn't specified, Python is installed under a user profile directory. 30 41 31 42