Project

General

Profile

Build Quassel on Windows » History » Version 10

« Previous - Version 10/35 (diff) - Next » - Current version
Datafreak, 10/29/2009 10:22 AM


Building Quassel on Windows

Software Requirements

Installation

Step 1: Install Visual C++ 2008 Express

Step 2: Install Visual C++ 2008 Redistributables.

These will be needed for OpenSSL.

Step 3: Install Platform SDK

Step 4: DirectX SDK

Step 5: Install OpenSSL

The first error message can be ignored as the Redistributables were installed.

Now you have to copy the "C:\OpenSSL\lib\VC\ssleay32MT.lib" file to "C:\OpenSSL\lib\VC\ssleay32.lib".

Do the same with "C:\OpenSSL\lib\VC\static\ssleay32MT.lib" to "C:\OpenSSL\lib\VC\static\ssleay32.lib".

Step 6: Install Git

Step 7: Install CMake

Step 8: Update the environment variables

Go to the system settings (Start => Control Panel => System), go to the "Advanced" tab and click on Environment Variables.

First you'll have to edit the "Path" variable. Append the following to the current value:

C:\Program Files\Microsoft SDKs\Windows\v6.1\Bin;C:\Program Files\Git\bin;C:\OpenSSL\bin

Next, create the following new system variables:

  • LIB:
    C:\Program Files\Microsoft SDKs\Windows\v6.1\Lib;C:\OpenSSL\lib\VC\static;C:\OpenSSL\lib
  • INCLUDE:
    C:\Program Files\Microsoft SDKs\Windows\v6.1\Include;C:\OpenSSL\include
  • QMAKESPEC:
    win32-msvc2005

Step 9: Compile and Install Qt

Create a directory (e.g. C:\dev\) and unpack Qt.

Now open the Visual Studio 2008 command line.

And cd to the directory containing Qt. Now you can configure the Qt installation with the following command:

configure.exe -platform win32-msvc2008 -static -release -qt-sql-sqlite -no-qt3support -qt-zlib -qt-gif -qt-libpng -qt-libmng -qt-libtiff -qt-libjpeg -openssl-linked -confirm-license -opensource -no-phonon -no-dbus -prefix C:\dev\qt-win-opensource-src-4.5.3

Then you can compiled Qt with these commands:

nmake

You can close the prompt after this.

Step 10: Update the environment variables again

After installing Qt, you will have to append the following:

  • Path
    ;C:\dev\qt-win-opensource-src-4.5.3\bin
  • LIB:
    ;C:\dev\qt-win-opensource-src-4.5.3\lib
  • INCLUDE:
    ;C:\dev\qt-win-opensource-src-4.5.3\include

Step 11: Compile Quassel

Open a new Visual Studio 2008 command line and go to the "C:\dev" directory again. Use git to download the Quassel source code.

git clone git://git.quassel-irc.org/quassel.git

This will create a new directory "quassel" containing the source. When you want to update Quassel later, you just have to go to this directory (C:\dev\quassel) and do a "git pull" to update the source code.

Next, create a new directory in "C:\dev" in which Quassel will be built. In our case, we will simply call it "build". Change to this directory and enter the following command to configure Quassel:

cmake -G"NMake Makefiles" C:\dev\quassel -DSTATIC=1 -DWANT_CORE=ON -DWANT_QTCLIENT=ON -DWANT_MONO=ON -DWITH_PHONON=OFF -DCMAKE_BUILD_TYPE=Release -DLINK_EXTRA=dwmapi,Version,shlwapi

And after that:

nmake

This will build Quasselcore, Quasselclient and Quasselmonolithic which can be found in the "C:\dev\build" directory.

Related links