blob: ffb8f1c3fe16ed2637ad4942a72847a278817320 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
///////////////////////////////////////////////////////////////////
// Gadu-Gadu Protocol Plugin for Miranda IM
// Author: Adam Strzelecki <ono+miranda@java.pl>
///////////////////////////////////////////////////////////////////
BUILD HOWTO
-----------
This plugin was tested with free MingW gcc-3.2 compiler.
There is no problem to use any other compiler like Visual C++,
but you have to make a Visual Studio project by your self.
Before you build it with MingW.. make sure that compiler and
other utilities like "make" are in you PATH.
Build libgadu on libgadu/ subdirectory:
make
To build release plugin run:
make
To compile debug version run:
make DEBUG=1
or use build.bat to make both versions.
|