Changes between Version 79 and Version 80 of BuildingCairoOnWindows


Ignore:
Timestamp:
Apr 10, 2022 2:09:01 PM (2 years ago)
Author:
Fujii Hironori
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingCairoOnWindows

    v79 v80  
    1111
    1212{{{
    13 choco install -y cmake ActivePerl python ruby git gperf ninja
    14 }}}
     13choco install -y ActivePerl python ruby git gperf
     14}}}
     15
     16`choco install cmake` doesn't configure your PATH. A switch is needed.
     17
     18{{{
     19choco install -y cmake --installargs 'ADD_CMAKE_TO_PATH=System'
     20}}}
     21
    1522
    1623WinCairo supports CMake Ninja generator and CMake Visual Studio generator.
    1724Ninja is optional.
    1825
    19 You might need more tools.
     26{{{
     27choco install -y ninja
     28}}}
     29
     30
     31You might need more tools if you want to develop WebKit.
    2032
    2133{{{