Compare commits

..

No commits in common. "660354574ec1371181a357f057a5a539c506bfa7" and "7abc4566adbd4003eee655abbddba302279af5d2" have entirely different histories.

2 changed files with 8 additions and 2 deletions

3
.gitignore vendored
View File

@ -27,7 +27,8 @@ mono_crash.*
out/ out/
#Clion Files #Clion Files
cmake-build-*/ cmake-build-debug/
cmake-build-release/
.idea/ .idea/
# Build results # Build results
[Dd]ebug/ [Dd]ebug/

View File

@ -64,7 +64,12 @@ Please use the prepackaged binaries in [Releases](https://github.com/BeamMP/Beam
Dependencies for **windows** can be installed with [`vcpkg`](https://github.com/microsoft/vcpkg). Dependencies for **windows** can be installed with [`vcpkg`](https://github.com/microsoft/vcpkg).
These are: These are:
``` ```
> vcpkg install lua:x64-windows-static zlib:x64-windows-static rapidjson:x64-windows-static openssl:x64-windows-static websocketpp:x64-windows-static curl:x64-windows-static > vcpkg install lua zlib rapidjson openssl websocketpp curl
```
_For x64 system_
```
> vcpkg install lua:x64-windows zlib:x64-windows rapidjson:x64-windows openssl:x64-windows websocketpp:x64-windows curl:x64-windows
``` ```
#### Linux #### Linux