Project

General

Profile

Build Quassel on Windows Mingw » History » Version 8

« Previous - Version 8/47 (diff) - Next » - Current version
TheOneRing, 01/26/2010 11:36 PM


Build Quassel on Windows Mingw

Software Requirements

Installation

Step 1:Install QT SDK

Download and install the QT SDK and select mingw to install with QT.

Step 2:Install DBGHELP SDK

Download and install DBGHELP

Step 3:Generate the dbghelp.dll.a for mingw

  • Open a command line
  • add your mingw installation to PATH (set PATH=%PATH%;mingwdir)
  • move to 'dbghelp'\sdk\lib\i386
  • type "reimp -d dbghelp.lib"
  • type "dlltool -k -d dbghelp.def -l dbghelp.dll.a"

Step 4: Install CMake

Checkout Quassel Mingw branch

  • "git clone git://gitorious.org/quassel/quassel.git"
  • "cd quassel"
  • "git remote add -f theonering git://gitorious.org/~theonering/quassel/theonerings-quassel.git"
  • "git checkout theonering/master"

Compile Quassel

  • open a command line
  • add mingw to your path (set PATH=%PATH%;'mingwdir')
  • add cmake to your path (analog to mingw)
  • add 'dbghelp'\sdk\lib\i386 to your path
  • add 'dbghelp'\sdk\inc\i386 to your path
  • switch to the directory where you checked out Quassel
  • type "mkdir build"
  • type "cd build"
  • type "cmake -G "MinGW Makefiles" .."
  • type "mingw32-make"