Adjusted readme.
Some checks failed
Build & Release / Linux-AMD64-Build (push) Has been cancelled
Build & Release / Windows-AMD64-Build (push) Has been cancelled
Build & Release / Linux-AARCH64-Build (push) Has been cancelled

This commit is contained in:
Arron David Nelson 2024-02-05 22:46:33 -08:00
parent 055f6e173e
commit 364c832345

View File

@ -62,7 +62,7 @@ Wayland Window System. Wayland support is currently not fully supported yet, use
`cmake --build /path/to/build --config Release` `cmake --build /path/to/build --config Release`
### Installing ### Installing
`sudo cmake --install . --prefix /usr/local` `sudo cmake --install /path/to/build --prefix /usr/local`
## Windows ## Windows
### Prerequisites ### Prerequisites
@ -72,13 +72,13 @@ Wayland Window System. Wayland support is currently not fully supported yet, use
- [vcpkg](https://learn.microsoft.com/en-us/vcpkg/get_started/get-started?pivots=shell-cmd) - [vcpkg](https://learn.microsoft.com/en-us/vcpkg/get_started/get-started?pivots=shell-cmd)
### Building ### Building
`cmake -A x64 -DCMAKE_BUILD_TYPE=Release --preset=default .` `cmake -A x64 -DCMAKE_BUILD_TYPE=Release --preset=default /path/to/source`
### Compiling ### Compiling
`cmake --build build --config Release` `cmake --build build --config Release`
### Installing ### Installing
`cmake --install . --prefix "C:/Program Files/EHS"` `cmake --install build --prefix "C:/Program Files/EHS"`
This will require the terminal to be running in administrator mode. This will require the terminal to be running in administrator mode.