Download external libraries and extract it to ./external
folder.
From the root of project directory:
mkdir build
cd build
Visual Studio 2017:
# (also you can set Release instead of Debug)
cmake .. -G "Visual Studio 15 2017" -T "v141_xp" -DCMAKE_BUILD_TYPE=Debug
Open build\icq.sln
and build it.
NMake:
# (also you can set Release instead of Debug)
cmake .. -G "NMake Makefiles" -T "v141_xp" -DCMAKE_BUILD_TYPE=Debug
nmake
From the root of project directory:
mkdir build
cd build
Xcode:
# (also you can set Release instead of Debug)
cmake .. -G Xcode -DCMAKE_BUILD_TYPE=Debug
Open build\icq.xcodeproj
and build it.
make:
# (also you can set Release instead of Debug)
cmake .. -DCMAKE_BUILD_TYPE=Debug
make
In order to build ICQ execute the following command line:
# change -DLINUX_ARCH=64 to -DLINUX_ARCH=32 for 32bit binaries
mkdir build && cd build
cmake .. -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DLINUX_ARCH=64 && make