From 992dcbfaa454fd06014e24549182c8e5038bb20b Mon Sep 17 00:00:00 2001 From: Jupeyy Date: Tue, 12 Sep 2017 20:03:35 +0200 Subject: [PATCH] added libglew to readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cb220dc7d..3e5142108 100644 --- a/README.md +++ b/README.md @@ -39,11 +39,11 @@ DDNet requires additional libraries, that are bundled for the most common platfo You can install the required libraries on your system, `touch CMakeLists.txt` and CMake will use the system-wide libraries by default. You can install all required dependencies and CMake on Debian or Ubuntu like this: - sudo apt install cmake libcurl4-openssl-dev libfreetype6-dev libogg-dev libopus-dev libopusfile-dev libsdl2-dev + sudo apt install cmake libcurl4-openssl-dev libfreetype6-dev libogg-dev libopus-dev libopusfile-dev libsdl2-dev libglew-dev Or on Arch Linux like this: - pacman -S cmake curl freetype2 opusfile sdl2 + pacman -S cmake curl freetype2 opusfile sdl2 glew If you have the libraries installed, but still want to use the bundled ones instead, you can do so by removing your build directory and re-running CMake with `-DPREFER_BUNDLED_LIBS=ON`, e.g. `cmake -DPREFER_BUNDLED_LIBS=ON ..`.