diff --git a/README.md b/README.md index cb20d6c8..c4beb8a5 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,8 @@ Even if your platform isn't supported by the official releases, you **must** buy # How to Build +This project uses [CMake](https://cmake.org/), a versatile building system that supports many different compilers and platforms. You can download CMake [here](https://cmake.org/download/). + ## Get the source code Clone the repo **recursively**, using: @@ -55,7 +57,7 @@ If you've already cloned the repo, run this command inside of the repository: ## Follow the build steps ### Windows -[Install vcpkg](https://github.com/microsoft/vcpkg#quick-start-windows), then run the following: +[Install vcpkg](https://github.com/microsoft/vcpkg#quick-start-windows), then run the following in Command Prompt: - `[vcpkg root]\vcpkg.exe install glew sdl2 libogg libtheora libvorbis --triplet=x64-windows-static` (the triplet can be whatever preferred) Finally, follow the [compilation steps below](#compiling) using `-DCMAKE_TOOLCHAIN_FILE=[vcpkg root]/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=[chosen triplet] -DCMAKE_PREFIX_PATH=[vcpkg root]/installed/[chosen triplet]/` as arguments for `cmake -Bbuild`.