Skip to content

Commit 719b0b9

Browse files
committed
Update installation guides with CMake 3.8 requirement
Change-Id: I4d77a913d13c9840c4471371ed37fb402710d6c1
1 parent 1358583 commit 719b0b9

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

doc/installation.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,18 @@ The scripts and commands below invoke `wget, git, add-apt-repository` which may
3131
`sudo apt-get install git libssl-dev libusb-1.0-0-dev pkg-config libgtk-3-dev` <br /><br />
3232
Distribution-specific packages: <br />
3333
* Ubuntu 14 or when running of Ubuntu 16.04 live-disk:<br />
34-
`sudo apt-get install cmake3`<br />
34+
`sudo apt-get install`<br />
3535
`./scripts/install_glfw3.sh` <br />
3636

3737
* Ubuntu 16:<br />
38-
`sudo apt-get install cmake3 libglfw3-dev`<br />
38+
`sudo apt-get install libglfw3-dev`<br />
3939

4040
* Ubuntu 18:<br />
41-
`sudo apt-get install cmake libglfw3-dev libgl1-mesa-dev libglu1-mesa-dev` <br /><br />
41+
`sudo apt-get install libglfw3-dev libgl1-mesa-dev libglu1-mesa-dev` <br /><br />
42+
43+
Cmake: *librealsense* requires version 3.8+ which is currently not made available via apt manager for Ubuntu LTS.
44+
Go to the [official CMake site](https://cmake.org/download/) to download and install the application
45+
4246

4347
**Note** on graphic sub-system utilization:<br />
4448
*glfw3*, *mesa* and *gtk* packages are required if you plan to build the SDK's OpenGl-enabled examples. The *librealsense* core library and a range of demos/tools are designed for headless environment deployment.
@@ -69,7 +73,7 @@ The scripts and commands below invoke `wget, git, add-apt-repository` which may
6973

7074
`./scripts/patch-realsense-ubuntu-odroid.sh`<br />
7175
Some additional details on the Odroid installation can also be found in [installation_odroid.md](installation_odroid.md)
72-
76+
7377
* Check the patched modules installation by examining the generated log as well as inspecting the latest entries in kernel log:<br />
7478
`sudo dmesg | tail -n 50`<br />
7579
The log should indicate that a new uvcvideo driver has been registered.

doc/installation_osx.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# macOS Installation
22

3-
**Note:** macOS support for the full range of functionality offered by the SDK is not yet complete. If you need support for R200 or the ZR300, [legacy librealsense](https://github.com/IntelRealSense/librealsense/tree/legacy) offers a subset of SDK functionality.
3+
**Note:** macOS support for the full range of functionality offered by the SDK is not yet complete. If you need support for R200 or the ZR300, [legacy librealsense](https://github.com/IntelRealSense/librealsense/tree/legacy) offers a subset of SDK functionality.
44

55
## Building from Source
66

@@ -10,6 +10,10 @@
1010
* `brew install libusb pkg-config`
1111
* `brew install homebrew/core/glfw3`
1212
* `brew install cmake`
13+
14+
**Note** *librealsense* requires CMake version 3.8+ that can be obtained via the [official CMake site](https://cmake.org/download/).
15+
16+
1317
4. Generate XCode project:
1418
* `mkdir build && cd build`
1519
* `sudo xcode-select --reset`

doc/installation_windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Note:** Due to the USB 3.0 translation layer between native hardware and virtual machine, the librealsense team does not recommend or support installation in a VM.
44

5-
librealsense shall be built on Windows using [CMake](https://cmake.org/download/) and Visual Studio 2015 / 2017:
5+
librealsense shall be built on Windows using [CMake v3.8+](https://cmake.org/download/) and Visual Studio 2015 / 2017:
66
(MSVC2013 and older are not fully compatible with the C++11 feature-set).
77
<a name="cmake_snapshot_win">
88
![Windows CMake](./img/windows_cmake.png)

0 commit comments

Comments
 (0)