diff --git a/build/BUILD.md b/build/BUILD.md index 599320f0f1..1ac6253234 100644 --- a/build/BUILD.md +++ b/build/BUILD.md @@ -8,6 +8,9 @@ Step 3. [Install HaxeFlixel](https://haxeflixel.com/documentation/install-haxefl Step 4. Run these commands to install the libraries required: +# NOTE: +If a library asks if you would like to switch to a specific version, just say no + ``` haxelib install lime haxelib install openfl @@ -38,7 +41,7 @@ Dependencies for compiling: ## Windows Only -Install Visual Studio Community 2019, and while installing instead of selecting the normal options, only select these components in the 'individual components' instead (or the closest equivalents). +Install [Visual Studio](https://visualstudio.microsoft.com/), and while installing instead of selecting the normal options, only select these components in the 'individual components' instead (or the closest equivalents). ```txt * MSVC v142 - VS 2019 C++ x64/x86 build tools @@ -62,3 +65,12 @@ sudo pacman -S luajit ``` Step 5. Run `lime test [platform]` in the project directory while replacing '[platform]' with your build target (usually `html5`, `windows`, `linux`, `mac`, or whatever platform you are building for). + +# NOTE: +If you are having issues when compiling due to a library giving you an error, try removing the library with +``` +haxelib remove library +``` +replacing library with the name of the library you would like to remove +and then re install it with the commands in step 4 +