Updated readme to include curl and fix issue #748 (#756)

This commit is contained in:
TheGreenBandit 2023-01-02 09:38:10 -05:00 committed by GitHub
parent fc93f29f4a
commit 175d93f18a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 9 deletions

View File

@ -28,6 +28,13 @@ Requirements:
If you have both of the above requirements you can skip to [cloning the git repo and generating the project files](#cloning-and-generating-project-files).
### Curl
Curl should be already installed on your computer, but if you are having issues with building the project, you will need to download and install
it. Once Installed run the exe located in bin and it should work
[Download Link](https://curl.se/download.html)
### Git
If you haven't installed git on your system go and do so it is **REQUIRED** for setting up a working build environment.
@ -36,7 +43,7 @@ If you haven't installed git on your system go and do so it is **REQUIRED** for
### CMake
CMake is used to generate our project files, if you haven't used it before we will need to download and install it.
CMake is used to generate our project files, if you haven't used it before you will need to download and install it.
[Download Link](https://cmake.org/download/)
@ -56,7 +63,9 @@ CMake is used to generate our project files, if you haven't used it before we wi
#### Generate project files
- On Windows
#### `NOTE` You will have cd build and cmake again if you add any files or you will get an error when building.
- Windows Only
- Visual Studio
@ -70,9 +79,10 @@ CMake is used to generate our project files, if you haven't used it before we wi
Then, you can just build by using the Build menu at the top and clicking Build All.
- Other OSs / IDEs
If you use something else, just follow this:
If you use something else or prefer using the console on Windows, just follow this:
```bash
mkdir build
@ -82,7 +92,6 @@ CMake is used to generate our project files, if you haven't used it before we wi
Now, you will be able to open the solution, and build it.
## Staying Up To Date
Pull the latest changes from this repository.
@ -121,6 +130,6 @@ Below is an incomplete list of feature that I believe are notable to this "base"
## Contributing
You're free to contribute to YimMenu as long as the feature are useful, non-toxic and do not contain anything money related that might get the menu targetted by Take2.
You're free to contribute to YimMenu as long as the feature are useful, not overly toxic, and do not contain anything money related that might get the menu targetted by Take2.
Make sure to read the [CONTRIBUTING.md](CONTRIBUTING.md) file.

View File

@ -20,5 +20,5 @@ namespace big
}
};
seatbelt g_seatbelt("seatbelt", "Seatbelt", "Prevent you from falling off bikes or flying through the windshield", g.vehicle.no_water_collision);
seatbelt g_seatbelt("seatbelt", "Seatbelt", "Prevent you from falling off bikes or flying through the windshield", g.vehicle.seatbelt);
}