Skip to content

eugeny54/icqdesktop

 
 

Repository files navigation

Windows

Download external libraries here https://files.icq.net/get/qx4fjqCBhKbqfWDaKubUVD5a155dbc1bb and extract it to ./external folder

From the root of project directory: mkdir build cd build

You can build project with Visual Studio 2017 or with NMake

Visual Studio 2017: cmake .. -G "Visual Studio 15 2017" -T "v141_xp" -DCMAKE_BUILD_TYPE=Debug (also you can set Release instead Debug) Open build\icq.sln and build

NMake: cmake .. -G "NMake Makefiles" -T "v141_xp" -DCMAKE_BUILD_TYPE=Debug (also you can set Release instead Debug) nmake

MacOS

Download external libraries here https://files.icq.net/get/qx4fjqCBhKbqfWDaKubUVD5a155dbc1bb and extract it to ./external folder

From the root of project directory: mkdir build cd build

You can build project with Xcode or with make

XCode: cmake .. -G Xcode -DCMAKE_BUILD_TYPE=Debug (also you can set Release instead Debug) Open build\icq.xcodeproj and build

make: cmake .. -DCMAKE_BUILD_TYPE=Debug (also you can set Release instead Debug) make

Linux

Download external libraries here https://files.icq.net/get/qx4fjqCBhKbqfWDaKubUVD5a155dbc1bb and extract it to ./external folder

In order to build ICQ execute the following command line (change -DLINUX_ARCH=32 to -DLINUX_ARCH=64 for 64bit binaries):

mkdir build && cd build && cmake .. -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DLINUX_ARCH=32 && make

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 76.6%
  • C 20.4%
  • Objective-C++ 1.3%
  • CMake 0.7%
  • QMake 0.5%
  • Objective-C 0.3%
  • Other 0.2%