summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorsethg <sethg@geographika.co.uk>2021-02-23 12:49:30 +0100
committersethg <sethg@geographika.co.uk>2021-02-23 12:49:30 +0100
commita1fdfe7d657cdc343868beaf6ea9f15a0311fe93 (patch)
tree14a57cd4fb294689521051fe8ef52d7d5df88ff3 /Doc
parentda33383ea26991cde94cc2d2a1afee61008c0547 (diff)
downloadswig-a1fdfe7d657cdc343868beaf6ea9f15a0311fe93.tar.gz
Remove duplicate section
Diffstat (limited to 'Doc')
-rw-r--r--Doc/Manual/Windows.html51
1 files changed, 21 insertions, 30 deletions
diff --git a/Doc/Manual/Windows.html b/Doc/Manual/Windows.html
index 1991e7fab..e23af9e75 100644
--- a/Doc/Manual/Windows.html
+++ b/Doc/Manual/Windows.html
@@ -356,15 +356,6 @@ Note that the Cygwin environment will also allow one to regenerate the autotool
These files are generated using the <tt>autogen.sh</tt> script and will only need regenerating in circumstances such as changing the build system.
</p>
-<H4><a name="Windows_building_alternatives">3.3.1.3 Building swig.exe alternatives</a></H4>
-
-
-<p>
-If you don't want to install Cygwin or MinGW, use a different compiler to build
-SWIG. For example, all the source code files can be added to a Visual C++ project
-file in order to build swig.exe from the Visual C++ IDE.
-</p>
-
<H4><a name="Windows_cygwin">3.3.1.2 Building swig.exe using Cygwin</a></H4>
@@ -394,27 +385,27 @@ building SWIG the dependencies need to be installed. The steps below are one of
For fully working build steps always check the Continuous Integration setups currently detailed in the <a href="https://github.com/swig/swig/blob/master/appveyor.yml">Appveyor YAML file</a>.
</p>
-<ol>
- <li>
- Download CMake from <a href="https://cmake.org/download/">https://cmake.org/download/</a>. In this example we are using 3.19 and unzipping it
- to C:\Tools\cmake-3.19.4-win64-x64
- </li>
- <li>
- Download Bison from <a href="https://sourceforge.net/projects/gnuwin32/files/bison/">https://sourceforge.net/projects/gnuwin32/files/bison/</a> (2.4.1 is used in this example)
- and save to a folder e.g. C:\Tools\Bison
- </li>
- <li>
- Install Nuget from <a href="https://www.nuget.org/downloads">https://www.nuget.org/downloads</a> (v5.8.1 is used in this example). Nuget is the package manager
- for .NET, but allows us to easily install <a href="https://www.pcre.org/">PCRE</a> required by SWIG.
- </li>
- <li>
- Install PCRE using Nuget using the following command: <pre>C:\Tools\nuget install pcre -Verbosity quiet -Version 8.33.0.1 -OutputDirectory C:\pcre</pre>
- </li>
- <li>
- We will also need the SWIG source code. Either download a zipped archive from GitHub, or if git is installed clone the latest codebase
- using <pre>git clone https://github.com/swig/swig.git</pre>
- In this example we are assuming the source code is available at C:\swig
- </li>
+<ol>
+ <li>
+ Install Nuget from <a href="https://www.nuget.org/downloads">https://www.nuget.org/downloads</a> (v5.8.1 is used in this example). Nuget is the package manager
+ for .NET, but allows us to easily install <a href="https://www.pcre.org/">PCRE</a> required by SWIG.
+ </li>
+ <li>
+ Download CMake from <a href="https://cmake.org/download/">https://cmake.org/download/</a>. In this example we are using 3.19 and unzipping it
+ to C:\Tools\cmake-3.19.4-win64-x64
+ </li>
+ <li>
+ Download Bison from <a href="https://sourceforge.net/projects/gnuwin32/files/bison/">https://sourceforge.net/projects/gnuwin32/files/bison/</a> (2.4.1 is used in this example)
+ and save to a folder e.g. C:\Tools\Bison
+ </li>
+ <li>
+ Install PCRE using Nuget using the following command: <pre>C:\Tools\nuget install pcre -Verbosity quiet -Version 8.33.0.1 -OutputDirectory C:\pcre</pre>
+ </li>
+ <li>
+ We will also need the SWIG source code. Either download a zipped archive from GitHub, or if git is installed clone the latest codebase
+ using <pre>git clone https://github.com/swig/swig.git</pre>
+ In this example we are assuming the source code is available at C:\swig
+ </li>
</ol>
<p>