








If you found any of the tools on this page helpful, any donations would be
appreciated.
|
How To Compile Wget on Windows
Wget has native support for Windows execution, and compiling is
relatively easy. I've outlined the full set of tools that you need to
compile Wget with Visual C++ 2005 Express.
Required Items
You will need the following:
Help file compilation will also require:
If you are building OpenSSL from source, you will also need:
Installation
- Install the Platform SDK.
When you install the Platform SDK, you only need to install the Windows
Core SDK for your platform, most likely x86 at this time. Make sure
you select Register Environment Variables

- Install Visual C++ Express 2005
- Install OpenSSL to C:\OpenSSL
- Install pre-compiled ZIP file from above.
- OR -
- Install and compile OpenSSL from source. See the
OpenSSL Install.W32 file for instructions.
- Install the Microsoft HTML Help compiler. Select the default
install location, then add C:\Program Files\Help Workshop to your
path.
- Extract the MakeInfo.EXE file from MakeInfo.Zip. Add it to a
directory in your path. A good directory is C:\Program Files\Help
Workshop.
- Extract the Wget source to a directory (C:\wget).
- Open a Visual Studio 2005 Command Prompt (Start | All Programs| Visual
C++ 2005 Express Edition | Visual Studio Tools)
- Change directories to your WGET source directory:
cd c:\wget
- At the command prompt, enter configure.BAT
--MSVC
- At the command prompt, enter nmake
- Wget.EXE will be created in the c:\wget\src
directory.
|