Changes between Version 79 and Version 80 of BuildingCairoOnWindows
- Timestamp:
- Apr 10, 2022, 2:09:01 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildingCairoOnWindows
v79 v80 11 11 12 12 {{{ 13 choco install -y cmake ActivePerl python ruby git gperf ninja 14 }}} 13 choco install -y ActivePerl python ruby git gperf 14 }}} 15 16 `choco install cmake` doesn't configure your PATH. A switch is needed. 17 18 {{{ 19 choco install -y cmake --installargs 'ADD_CMAKE_TO_PATH=System' 20 }}} 21 15 22 16 23 WinCairo supports CMake Ninja generator and CMake Visual Studio generator. 17 24 Ninja is optional. 18 25 19 You might need more tools. 26 {{{ 27 choco install -y ninja 28 }}} 29 30 31 You might need more tools if you want to develop WebKit. 20 32 21 33 {{{