Turkish translation
[qBittorrent.git] / README.os2
blob13551c93f78b907f9c6cf1c9b3f331042c236eeb
1 qBittorrent - A BitTorrent client in Qt4
2 ------------------------------------------
4 This is the eComStation (OS/2) qBittorrent part of the readme. See also README for more general information.
7 Building qBittorrent
8 ********************
11 Requirements
12 ============
14 - gcc based build env (recommended gcc v4.4.2 or greater)
15   
16 - Qt4 for eCS (OS/2) dev package (see http://svn.netlabs.org/qt4 for more information)
18 - libtorrent-rasterbar for eCS (OS/2) port (see http://svn.netlabs.org/ports for more information)
20 - boost for eCS (OS/2) port (see http://svn.netlabs.org/ports for more information)
23 How to build
24 ============
26 First you need to create the conf.pri file in the same dir as this readme.os2 is.
27 the conf.pri file has the following content:
29 ##### conf.pri content begin #####
30 BINDIR = ./bin
31 INCDIR = ./include
32 LIBDIR = ./lib
33 DATADIR = ./share
35 CONFIG += staticlib
36 INCLUDEPATH += x:/trees/libtorrent/trunk/include
37 LIBS += -Lx:/trees/libtorrent/trunk/src/.libs \
38         -Lx:/trees/boost/trunk/stage/lib \
39         -Lx:/trees/openssl \
40         -Lx:/extras/lib
41 ##### conf.pri content end #####
43 Of course all the above path references have to be adjusted to your build env.
45 Now you can either do a normal build or a shadow build. A shadow build has the
46 advantage that no created files are in the same dir as the sources are.
48 For a normal build do the following:
50 Simply type:
51 $ qmake
53 Followed by:
54 $ make
56 For a shadow build do the following:
57 given your sources are in x:\trees\qbittorrent\trunk create a 
58 x:\trees\qbittorrent\build directory
60 Now switch to the created directory and type:
61 $ qmake ..\trunk
63 Followed by:
64 $ make
66 If all works fine you should get a working qbittorrent executable.
68 If you have any question regarding the eCS (OS/2) port of qBittorrent you can meet me (_diver) on IRC:
69 #netlabs on irc.freenode.net
71 ------------------------------------------
72 Silvan Scherrer <silvan.scherrer@aroa.ch>