Skip to content

duqingnian/im-desktop

 
 

Repository files navigation

Build instructions

Windows Build Directions

From the root of project directory:

mkdir build
cd build

You can build project with Visual Studio 2019:

Visual Studio 2019:

# (also you can set Release instead Debug)
cmake .. -DIM_QT_DYNAMIC=ON -G "Visual Studio 16 2019" -A Win32 -DCMAKE_BUILD_TYPE=Release

MSBuild.exe icq.sln /m /t:Rebuild /p:Configuration=Release /p:Platform=Win32 /nodeReuse:false

Or open build\icq.sln and build it.

macOS Build Directions

From the root of project directory:

mkdir build
cd build

You can build project with Xcode or with make:

Xcode:

cmake .. -DIM_QT_DYNAMIC=ON -G Xcode -DCMAKE_BUILD_TYPE=Release

Open build\icq.xcodeproj and build it.

make:

cmake .. -DIM_QT_DYNAMIC=ON -DCMAKE_BUILD_TYPE=Release
make -j$(nproc)

Linux Build Directions

In order to build ICQ execute the following command line:

mkdir build && cd build
cmake .. -DIM_QT_DYNAMIC=ON -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DLINUX_ARCH=64 && make -j$(nproc)

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%