Download external libraries and extract it to ./external folder.
From the root of project directory:
mkdir build
cd buildVisual Studio 2017:
# (also you can set Release instead of Debug)
cmake .. -G "Visual Studio 15 2017" -T "v141_xp" -DCMAKE_BUILD_TYPE=DebugOpen 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
nmakeFrom the root of project directory:
mkdir build
cd buildXcode:
# (also you can set Release instead of Debug)
cmake .. -G Xcode -DCMAKE_BUILD_TYPE=DebugOpen build\icq.xcodeproj and build it.
make:
# (also you can set Release instead of Debug)
cmake .. -DCMAKE_BUILD_TYPE=Debug
makeIn 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