Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Kawohl <john@owncloud.com>2016-10-19 12:12:11 +0300
committerJonathan Kawohl <john@owncloud.com>2016-11-09 10:59:14 +0300
commitd70db810dd76391a69c14ccc82bb8ff12fcfb00e (patch)
treeae12ab7fb19f0faa0f49a896dcb6cbb98cdb0d70
parent842129f99df11ce78df586f2f7eeb4f0d0ad56af (diff)
updated link for documentation and added more info to osx build
-rw-r--r--README.md2
-rw-r--r--doc/building.rst12
2 files changed, 11 insertions, 3 deletions
diff --git a/README.md b/README.md
index cd568062c..f66160698 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ https://github.com/owncloud/client.
## Building the source code
-[Building the Client](http://doc.owncloud.org/desktop/2.0/building.html)
+[Building the Client](http://doc.owncloud.org/desktop/2.2/building.html)
in the ownCloud Desktop Client manual.
## Maintainers and Contributors
diff --git a/doc/building.rst b/doc/building.rst
index 96059e036..c8bfc374c 100644
--- a/doc/building.rst
+++ b/doc/building.rst
@@ -66,11 +66,18 @@ recipes.
To set up your build environment for development using HomeBrew_:
-1. Add the ownCloud repository using the following command::
+1. Install Xcode
+2. Install Xcode command line tools::
+ xcode-select --install
+
+3. Install homebrew::
+ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
+
+4. Add the ownCloud repository using the following command::
brew tap owncloud/owncloud
-2. Install any missing dependencies::
+5. Install any missing dependencies::
brew install $(brew deps owncloud-client)
@@ -234,6 +241,7 @@ To build the most up-to-date version of the client:
.. note:: On Mac OS X, you need to specify ``-DCMAKE_INSTALL_PREFIX=target``,
where ``target`` is a private location, i.e. in parallel to your build
dir by specifying ``../install``.
+ .. note:: Example:: cmake -DCMAKE_PREFIX_PATH=/usr/local/opt/qt5 -DCMAKE_INSTALL_PREFIX=/Users/path/to/client/install/ -D_OPENSSL_LIBDIR=/usr/local/opt/openssl/lib/ -D_OPENSSL_INCLUDEDIR=/usr/local/opt/openssl/include/ -D_OPENSSL_VERSION=1.0.2a -DOPENSSL_INCLUDE_DIR=/usr/local/opt/openssl/include/ -DNO_SHIBBOLETH=1
4. Call ``make``.