contacts: display reachable contacts

This commits introduces integration with user's contacts
Only reachable contacts are displayed, based on accounts available.
No edition is provided within Ring.

Change-Id: I8d897802b086eccc42446d58f3efa83cb953e14b
12 files changed
tree: 4bfdb610c4dec3122e69d73bba156a3401bcc06b
  1. cmake/
  2. data/
  3. src/
  4. ui/
  5. .gitignore
  6. CMakeLists.txt
  7. COPYING
  8. Credits.rtf
  9. README.md
README.md

Ring Mac OSX


This is the official Mac port of Ring.

Requirements

  • Ring daemon
  • libRingClient (Qt5 version)
  • Qt5 Core
  • Cocoa framework

Build instructions

  1. mkdir build && cd build

  2. export CMAKE_PREFIX_PATH=<dir_to_qt5>

Now generate an Xcode project with CMake: 4. cmake ../ -DCMAKE_INSTALL_PREFIX=<libringclient_install_path> -G Xcode 5. open Ring.xcodeproj/ 6. Build and run it from Xcode. You can also generate the final Ring.app bundle.

You can also build it from the command line:

  1. cmake ../ -DCMAKE_INSTALL_PREFIX=<libringclient_install_path>
  2. make
  3. open Ring.app/

Debugging

For now, the build type of the client is "Debug" by default, however it is useful to also have the debug symbols of libRingClient. To do this, specify this when compiling libRingClient with '-DCMAKE_BUILD_TYPE=Debug' in the cmake options.