Giter Site home page Giter Site logo

gesellix / icqdesktop Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mailru/icqdesktop.deprecated

0.0 3.0 0.0 218.98 MB

License: Other

C++ 64.59% C 33.20% Shell 0.01% Objective-C 0.36% Objective-C++ 1.06% QMake 0.51% Batchfile 0.03% Python 0.24% Prolog 0.01%

icqdesktop's Introduction

Windows

ICQ for windows is compiled by Visual Studio.

The solution file is icq.sln

To build it, you need to provide three environment variables.

  • QT_PATH - path to dir containing the built Qt version (dir with folders bin, include, lib)
  • BOOST_INCLUDE - path for boost inclusions (dir containing folder boost)
  • BOOST_LIB - path to boost libraries

MacOS

ICQ for Mac is compiled by Xcode and does not require any dependencies resolving. Xcode project file is mac/ICQ/ICQ.xcodeproj

Linux

ICQ for Linux is compiled by Qt creator, so you need to prepare Qt environment first.

Qt may be installed from the official installer (see Qt official website) or compiled from source code and linked statically/dynamically.

To configure Qt, we use the following command line:

./configure -static -release -c++11 -no-opengl -no-harfbuzz \
  -no-audio-backend -system-xkbcommon-x11 -dbus-linked -no-openssl -qt-xcb \
  -confirm-license -opensource -qt-zlib -qt-libjpeg -qt-libpng

You will also require the following packages, which can be obtained via your package manager:

libfontconfig1-dev
libfreetype6-dev
libx11-dev
libxext-dev
libxfixes-dev
libxi-dev
libxrender-dev
libxcb1-dev
libx11-xcb-dev
libxcb-glx0-dev

Additionally, we patched Qt source code:

  1. qtbase/src/gui/text/qtextlayout.cpp
if (lbh.currentPosition > 0 && lbh.currentPosition < end
                && attributes[lbh.currentPosition].lineBreak
                && eng->layoutData->string.at(lbh.currentPosition - 1).unicode() == QChar::SoftHyphen) {
  • comment or remove code block in if construction
  1. qtbase/src/gui/text/qtextengine.cpp
if (si->position + itemLength >= lineEnd
        && eng->layoutData->string.at(lineEnd - 1).unicode() == QChar::SoftHyphen)
        glyphs.attributes[glyphsEnd - 1].dontPrint = false;
  • change false to true

In order to install the prepared version of Qt in Qt Creator, use official Qt manuals.

We provides two .pro files containing build configuration for the project:

  • corelib/corelib/corelib.pro - core library
  • gui/gui.pro - gui (executable file)

In gui.pro, you may switch between x32 and x64 architecture, as well as external and internal resources linking (CONFIG variable). You also have to provide a path to the directory, containing corelib.a file, which is obtained by building corelib.pro project (CORELIB_PATH variable).

Before building gui.pro file, you need to install libqt4-dev package and execute config_linux.sh in trunk root.

Additional library dependencies can be found in gui.pro or by following errors during the linkage process = )

The missing dependencies can be installed via your package manager.

icqdesktop's People

Contributors

koptyakov avatar sanmai avatar rzhilkin avatar kafeman avatar

Watchers

Tobias Gesellchen avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.