Skip to content

Blackbat-AI/im-desktop

Repository files navigation

Build instructions

Requirements

Download external libraries and extract it to ./external folder.

Windows Build Directions

From the root of project directory:

mkdir build
cd build

You can build project with Visual Studio 2017 or with NMake:

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

macOS Build Directions

From the root of project directory:

mkdir build
cd build

You can build project with Xcode or with make:

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

Linux Build Directions

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 86.8%
  • C 10.7%
  • CMake 1.3%
  • Objective-C++ 0.9%
  • Python 0.1%
  • Objective-C 0.1%
  • Other 0.1%