Showing with 29 additions and 0 deletions.
  1. +14 −0 INSTALL
  2. +15 −0 doc/msvc.t2t
14 changes: 14 additions & 0 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,20 @@ Running QGIS from within MSVC:
Run.
Ignore the "These projects are out of date" message, it appeares even if no files were was changed.

Compiling QGIS with Ninja:
Compiling with Ninja can drastically reduce the time it takes, especially for rebuilds.
Run the batch file OSGeo4W-dev.bat you created before. On the command prompt run:

```
cd path/to/qgis/source
mkdir build
cd build
cmake -G Ninja -D CMAKE_BUILD_TYPE=RELWITHDEBINFO ..
ninja
# optionally specifiy which targets to rebuild to further reduce building time
ninja qgis_gui
```

Old alternative method that might still work using cmake-gui:
Create a 'build' directory somewhere. This will be where all the build output
will be generated.
Expand Down
15 changes: 15 additions & 0 deletions doc/msvc.t2t
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,21 @@ Running QGIS from within MSVC:
Ignore the "These projects are out of date" message, it appeares even if no files were was changed.


Compiling QGIS with Ninja:
Compiling with Ninja can drastically reduce the time it takes, especially for rebuilds.
Run the batch file OSGeo4W-dev.bat you created before. On the command prompt run:

```
cd path/to/qgis/source
mkdir build
cd build
cmake -G Ninja -D CMAKE_BUILD_TYPE=RELWITHDEBINFO ..
ninja
# optionally specifiy which targets to rebuild to further reduce building time
ninja qgis_gui
```


Old alternative method that might still work using cmake-gui:
Create a 'build' directory somewhere. This will be where all the build output
will be generated.
Expand Down