aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLukas Rusak <lorusak@gmail.com>2020-10-07 14:38:21 -0700
committerLukas Rusak <lorusak@gmail.com>2020-10-27 08:21:37 -0700
commit4dafe4b8528baf008d3079c333c8b97942cb84f1 (patch)
tree1dcd81a859b0ee65156aac0d1a5d1119355f3e78 /docs
parentffb5ec80e5a15c0995b928261956eec887518baa (diff)
[docs] update docs to remove X11/WAYLAND/GBM_RENDER_SYSTEM
Diffstat (limited to 'docs')
-rw-r--r--docs/README.Linux.md14
1 files changed, 11 insertions, 3 deletions
diff --git a/docs/README.Linux.md b/docs/README.Linux.md
index e7cdf8dd5c..86d1bd628b 100644
--- a/docs/README.Linux.md
+++ b/docs/README.Linux.md
@@ -141,25 +141,33 @@ cd $HOME/kodi-build
Configure build for X11:
```
-cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DX11_RENDER_SYSTEM=gl
+cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME=x11 -DAPP_RENDER_SYSTEM=gl
```
**NOTE:** You can use `gles` instead of `gl` if you want to build with `GLES`.
Or configure build for Wayland:
```
-cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME=wayland -DWAYLAND_RENDER_SYSTEM=gl
+cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME=wayland -DAPP_RENDER_SYSTEM=gl
```
**NOTE:** You can use `gles` instead of `gl` if you want to build with `GLES`.
Or configure build for GBM:
```
-cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME=gbm -DGBM_RENDER_SYSTEM=gles
+cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME=gbm -DAPP_RENDER_SYSTEM=gles
```
**NOTE:** You can use `gl` instead of `gles` if you want to build with `GL`.
+Or configure build with any combination of the three (default is "x11 wayland gbm"):
+```
+cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME="x11 wayland gbm" -DAPP_RENDER_SYSTEM=gl
+```
+
+**NOTE:** You can use `gles` instead of `gl` if you want to build with `GLES`.
+
+
### 4.2. Build
```
cmake --build . -- VERBOSE=1 -j$(getconf _NPROCESSORS_ONLN)