From 67fcce2d4604229a0c744c37e3446b2dab11bf01 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Tue, 9 Jun 2020 14:45:55 +0200 Subject: [PATCH] readme: glfw is no longer needed --- README.md | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 2e41ac2b43..2b0aaf7ece 100644 --- a/README.md +++ b/README.md @@ -154,28 +154,24 @@ v run tetris/tetris.v -In order to build Tetris and anything else using the graphics module, you will need to install glfw and freetype libraries. +In order to build Tetris and anything else using the graphics module on non-Windows systems, you will need to install freetype libraries. If you plan to use the http package, you also need to install OpenSSL on non-Windows systems. ``` macOS: -brew install glfw freetype openssl +brew install freetype openssl Debian/Ubuntu: -sudo apt install libglfw3 libglfw3-dev libfreetype6-dev libssl-dev +sudo apt install libfreetype6-dev libssl-dev Arch/Manjaro: -sudo pacman -S glfw-x11 freetype2 +sudo pacman -S freetype2 Fedora: -sudo dnf install glfw glfw-devel freetype-devel - -Windows: -v setup-freetype +sudo dnf install freetype-devel ``` -glfw dependency will be removed soon. ## V UI