#summary Instructions for building Hedgewars on Windows (Currently outdated) #labels Phase-Implementation,Phase-Design,Phase-Support = Building on Windows = == Warning! == These build instructions are very outdated. Try to build under [BuildingOnLinux GNU/Linux], if you can. If you have managed to get a successful Windows build for a recent Hedgewars build, please get in touch with us (Try the forums, for example: https://hedgewars.org/forum) == Things to download == First of all, figure out whether your system is a 32-bit or a 64-bit system. You can use the guide at [http://windows.microsoft.com/en-US/windows7/find-out-32-or-64-bit]. You will need it while doing the setup. Basically, you need to have all dependencies listed at [Dependencies]. The following is a list of where you can obtain the dependencies for Windows: # CMake - download the *Windows (Win32 Installer)* * Link: https://cmake.org/download/ # FreePascal - download the *Download as installer* * Link: http://sourceforge.net/projects/freepascal/ # Qt SDK - Select the online installer, as it will save you ~1 GB of bandwidth. Nokia will also require you to register an account to download it. * Link: https://www.qt.io/download-qt-installer # Mercurial - pick one (TortoiseHg has a GUI and is more user-friendly) * TortoiseHg - Chose one based on your OS version * Link: https://tortoisehg.bitbucket.io/ * Command-line mercurial * Link: http://mercurial.selenic.com/downloads/ # _Windows building archive_ - it contains everything you need to compile Hedgewars on Windows. * Link (**!!!LINK IS DEAD!!!**): http://hedgewars.googlecode.com/files/hedgewars-win32-buildscripts.zip == Setup == # Install CMake, but please *ensure* you select "Add CMake to the system PATH for all users", so you can run CMake directly from command line. # Install FreePascal. # Install Qt SDK, with the "Custom" option: * Click the *DESELECT ALL* button. We will then check only what we need * Check *Qt SDK/Miscellaneous/MinGW * * Check *Qt SDK/Development Tools/Desktop Qt/Qt /Desktop Qt - Mingw* * !!If there are any error message boxes, just press ignore until they are all gone. :) # Install TortoiseHg / Mercurial # Restart the computer # Download the Hedgewars source: # Using TortoiseHg * Right-click in any folder on your computer * Select Tortoise HG -> Clone. * In the _Source_ textbox enter: https://hg.hedgewars.org/hedgewars/ * Press clone # Using command-line Mercurial * If you have Windows 7 skip the next 3 steps, and instead, SHIFT + Right click in the folder where you want to download the source. * Start _Run..._ ( WINDOWS Key + R , or Start -> Run... ) * Enter: {{{ cmd.exe }}} * Navigate to where you want to download the source * Type and execute ( The initial clone of the repository will take a while, is about 550MiB or so... ): {{{ hg clone https://hg.hedgewars.org/hedgewars/ trunk }}} # Navigate to the where you cloned the repository source to. # Go to the "tools/build_windows.bat" file, and modify the following: * SET PASCAL= (for example: c:\FPC\2.4.4\bin\i386-win32\) * SET SET QTDIR=> (for example: c:\QtSDK\Desktop\Qt\4.8.1\) # You can now build hedgewars, by running the *tools/build_windows.bat* command. # After building it, you can run it from the Desktop - using the *Hedgewars* shortcut. == Additional setup for Visual Studio 2010 == To build Hedgewars using Visual Studio 2010, you will need to update a few SDL files using this zip file (http://hedgewars.googlecode.com/files/hedgewars-VS2010-additional.zip). Just download and overwrite it into your currect hedgewars project folder. This is mainly an update to SDL_mixer (updating it to version 1.2.12), and changing the SDLconfig.h file to work with the sperate platform headers instead of the current one. Next you will need to change some project settings. If you don't have the SDL directives set correctly in CMake then your project files will be incorect (they still may be incorrect even if you did get them set right). You need to change the following Project Settings for the 'hedgewars' project. # Make sure that under C/C++ => Additional Include Directories you have \hedgewars\misc\winutils\include\. # Change the Linker => Input => Additional Dependencies option to have the following at the end: * \hedgewars\misc\winutils\lib\SDL.lib * \hedgewars\misc\winutils\lib\SDLmain.lib * \hedgewars\misc\winutils\lib\SDL_mixer.lib # Adjust the Output Directory under the General settings to be just \hedgewars\bin\. == Building process == Run the *tools/build_windows.bat* file each time you want to build the source. Please note that there might some incompatibilities with the environment paths of this script in case that you are running MinSYS or Cygwin: we are quite confident that if you use such software you're quite able to correctly set up any paths.