forked from qbittorrent/qBittorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Christophe Dumez
committed
Apr 13, 2010
1 parent
ed4c711
commit 0bbeab9
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
qBittorrent - A BitTorrent client in Qt4 | ||
------------------------------------------ | ||
|
||
This is the eComStation (OS/2) qBittorrent part of the readme. See also README for more general information. | ||
|
||
|
||
Building qBittorrent | ||
******************** | ||
|
||
|
||
Requirements | ||
============ | ||
|
||
- gcc based build env (recommended gcc v4.4.2 or greater) | ||
|
||
- Qt4 for eCS (OS/2) dev package (see http://svn.netlabs.org/qt4 for more information) | ||
|
||
- libtorrent-rasterbar for eCS (OS/2) port (see http://svn.netlabs.org/ports for more information) | ||
|
||
- boost for eCS (OS/2) port (see http://svn.netlabs.org/ports for more information) | ||
|
||
|
||
How to build | ||
============ | ||
|
||
First you need to create the conf.pri file in the same dir as this readme.os2 is. | ||
the conf.pri file has the following content: | ||
|
||
##### conf.pri content beginn ##### | ||
PREFIX = . | ||
BINDIR = ./bin | ||
INCDIR = ./include | ||
LIBDIR = ./lib | ||
DATADIR = ./share | ||
|
||
CONFIG += staticlib | ||
INCLUDEPATH += x:/trees/libtorrent/trunk/include | ||
LIBS += -Lx:/trees/libtorrent/trunk/src/.libs \ | ||
-Lx:/trees/boost/trunk/stage/lib \ | ||
-Lx:/trees/openssl \ | ||
-Lx:/extras/lib | ||
##### conf.pri content end ##### | ||
|
||
Of course all the above path references have to be adjusted to your build env. | ||
|
||
It should now be easy to build qBittorrent: | ||
|
||
Simply type: | ||
$ qmake | ||
|
||
Followed by: | ||
$ make | ||
|
||
If all works fine you should get a working qbittorrent executable. | ||
|
||
If you have any question regarding the eCS (OS/2) port of qBittorrent you can meet me (_diver) on IRC: | ||
#netlabs on irc.freenode.net | ||
|
||
------------------------------------------ | ||
Silvan Scherrer <[email protected]> | ||
|
||
|