1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

Update README.md

This commit is contained in:
Alexander Medvednikov 2019-08-10 11:51:55 +02:00 committed by GitHub
parent 2e4e9dbc6f
commit cb1c177d49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -140,23 +140,23 @@ In order to build Tetris and anything else using the graphics module, you will n
v install glfw v install glfw
``` ```
If you plan to use the http package, you also need to install libcurl. If you plan to use the http package, you also need to install openssl on non-Windows systems.
``` ```
macOS: macOS:
brew install glfw freetype curl brew install glfw freetype openssl
Debian/Ubuntu: Debian/Ubuntu:
sudo apt install libglfw3 libglfw3-dev libfreetype6-dev libcurl4-openssl-dev sudo apt install libglfw3 libglfw3-dev libfreetype6-dev
Arch/Manjaro: Arch/Manjaro:
sudo pacman -S glfw-x11 curl freetype2 sudo pacman -S glfw-x11 freetype2
Fedora: Fedora:
sudo dnf install glfw glfw-devel freetype-devel libcurl-devel sudo dnf install glfw glfw-devel freetype-devel
``` ```
glfw and libcurl dependencies will be removed soon. glfw dependency will be removed soon.
## Code structure ## Code structure