packaging: fix/typo build packaging command

Refs #72145

Change-Id: I0d5ca33ee7335a3fe2735bb755ef33fb31c2b76d
1 file changed
tree: 8d89832386c5747b36a040636d61904ac16d774a
  1. cmake/
  2. data/
  3. src/
  4. ui/
  5. .gitignore
  6. .packer.yml
  7. CMakeLists.txt
  8. COPYING
  9. Credits.rtf
  10. 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.