Skip to content

Building on Windows

Ingo Ruhnke edited this page Aug 28, 2018 · 1 revision

Introduction

If you want to build the current development version on Windows, these step-by-step instructions are for you. An example of a successful build following these instructions can be found here. At the end of the article is a quick guide for Visual Studio.

Warnings

Before you proceed, however, carefully read the following warnings:

  • You will be building a highly unstable development version of SuperTux. This might cause permanent damage to your system, your brain or both!
  • Do not try these instructions out on a production system. Use a virtual machine (e.g. VMWare or VirtualBox) instead.
  • Most developers currently focus on getting SuperTux stable for Linux. Feel free to try getting it to work on Windows, but do not expect much support down this road.
  • Read these instructions to the end before starting your install. If any step makes you feel unsure, better wait for a Windows release of SuperTux.
  • The whole build process takes about one hour to complete, depending on your internet connection and processor power. Why not do something more productive in that hour? Maybe do some housework?
  • The build process fails on Windows Vista sometimes. (please open a bug in our bug tracker to help us figure out why)

Preparation

OK, enough of that. Here are the exact steps for building SuperTux on a fresh Windows installation:

  • Create or pick a working folder. Its path should not contain any spaces. (The root of a drive, such as C:\ or D:\, is fine)
    • I chose D:\Build_SuperTux; change the commands to match your choice.
    • Every non-absolute path I give is relative to this directory

Checking Things Out

  • We want to check out the latest sources from the Git repository
  • You need a Git client (instructions vary depending on client you choose)
    • For example using MsysGit
      • Run the installer
      • Run Git Bash and navigate to the folder you want to save SuperTux to
      • Type: git clone https://code.google.com/p/supertux/
      • Begin your checkout and wait - this might take some time, so to the next step...

It's Download Time

Download all these to your build directory.

Look for the latest version of mingw-get-inst here.

http://www.cmake.org/files/v2.8/cmake-2.8.5-win32-x86.zip

  • cURL (add-on manager)

http://www.gknw.net/mirror/curl/win32/curl-7.21.7-devel-mingw32.zip Alternative download (v 7.31.0)

  • SDL graphics library

http://www.libsdl.org/release/SDL-devel-1.2.14-mingw32.tar.gz

  • GLEW graphics library

http://sourceforge.net/projects/glew/files/glew/1.7.0/glew-1.7.0-win32.zip/download

http://www.libsdl.org/projects/SDL_image/release/SDL_image-devel-1.2.10-VC.zip

http://icculus.org/physfs/downloads/physfs-2.0.2.tar.gz

http://sourceforge.net/projects/boost/files/boost/1.47.0/boost_1_47_0.7z/download

  • 7-zip for your favorite extraction program

http://downloads.sourceforge.net/sevenzip/7z920.exe

  • OpenAL, for all your OggVorbis needs

http://connect.creativelabs.com/openal/Downloads/OpenAL11CoreSDK.zip Alternative download location

Getting Busy

  • Run the 7-zip, mingw-get-inst, and OpenAL SDK installers.
    • I used the default paths for 7-zip and OpenAL, and used the build directory for MinGW (remove the MinGW suffix at the end)
  • For everything else you downloaded, right click and use 7-zip's “Extract here”. Repeat with the generated *.tar files.
  • Move the physfs-2.* directory out from Users/.../physfs* into the main directory
  • Make a folder local to hold libraries
  • Copy bin, include, lib, and share folders from cmake, curl, SDL, SDL_image, and glew folders (don't include physfs or boost)
  • Go to C:\Program Files\OpenAL 1.1 SDK
  • Copy the include directory there to local
  • Copy \samples\playoggvorbis\include\Ogg and \samples\playoggvorbis\include\Vorbis to local\include
  • Copy the Ogg and Vorbis DLL's in \samples\playoggvorbis\Win32 to local\bin
  • Go to C:\WINDOWS\system32 (%SYSTEMROOT%\system32)
    • 64-bit Windows: go to C:\windows\syswow64 (%SYSTEMROOT%\syswow64) instead.
  • Copy OpenAL32.dll and wrap_oal.dll to local\bin
    • If they aren't there, try running C:\Program Files\OpenAL 1.1 SDK\redist\oalinst.exe

Building

  • We're going to build PhysFS.
  • Launch MSYS with msys/msys.bat and type in the following: (you can paste into MSYS using the icon in the title bar)

cd /physfs* mkdir build cd build cmake .. -G MSYS`` ``Makefiles -DCMAKE_INSTALL_PREFIX:PATH=/local make make install

  • We're ready to build SuperTux.
  • Change to the SuperTux checkout directory

cd /supertux

  • Make a build directory to store generated files

mkdir build cd build

  • Start the actual build (everything else was libraries)

INCLUDE=/local/include/SDL:/boost_1_47_0 cmake -GMSYS`` ``Makefiles -DCOMPILE_AMALGATION=ON -DCMAKE_CXX_FLAGS=-Wl,--enable-auto-import .. make

  • You need to copy some dll's from /local/bin, /local/lib, and /bin into /supertux.

cd .. cp /local/bin/*.dll . cp /local/lib/*.dll . cp /mingw/bin/*.dll .

A lot of these are unnecessary; use objdump -p or strings to prune the tree.

  • Now run supertux2.exe, sit back, and enjoy the game.

cd /supertux ./supertux2.exe

Building the editor

There's a new gtk-sharp based editor in development which can also be built on windows. To do so you first have to get and install the following dependencies:

Dependencies

Building

  • Get the sourcecode from svn
  • Open supertux-sharp.sln by double clicking on it.
  • Build the project in debug and release mode (use F6 and then F5 for example)
  • Copy SDL.dll and SDL_image.dll into the bin\Debug and bin\Release directory that has just been created
  • You can now go back to Visual Studio Express and start the editor with F11. Note that the debug mode is quite slow for the OpenGL calls, so if you actually want to use the editor instead of developing it start it in release mode (CTRL+F11)

You might want to read the Editor FAQ at this point.

Snapshots

MMLosh has some snapshots on his website: http://elektromaniak.wz.cz/download.html Note that because Mono is cross-platform, the executables should work on both Windows and Linux, though libraries can be a problem.

Fast and Easy Build with Visual Studio

This is experimental Tested on W7/VS2010 x64

Steps:

  • Install Visual Studio
  • Download CMake 2.8+
  • Open cmake gui
  • Set dirs according to your Environment (p.ex.: H:\STuxSVN and H:\STuxSVN\bin)
  • Press Configure, select your version of VS (with native compilers) and click on finish
  • Now CMake tells you what to do. If asked for any libs, make sure to download and add them to your environment strings

Small List of DLs:

  • Boost: BOOST_ROOT: H:\STuxSVN\boost_1_42_0 / BOOST_LIBRARYDIR: $BOOST_ROOT\libs)
  • OpenAL: OPENAL_INCLUDE_DIR: D:\Program Files (x86)\OpenAL 1.1 SDK\include
  • Ogg Vorbis: VORBIS_INCLUDE_DIR: H:\STuxSVN\libvorbis-1.2.3
  • SDLIMAGE: SDLIMAGE_INCLUDE_DIR: H:\STuxSVN\SDL_image-1.2.10\include
  • SDL: SDL_INCLUDE_DIR: H:\STuxSVN\SDL-1.2.14

Category:Developer documentation

Clone this wiki locally