diff options
| -rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -193,26 +193,26 @@ Building on Mac is very similar to Linux; install xmake, clone vcpkg and Zen and then build the project. You will also need to install Xcode or Xcode command line tools. -## vcpkg +### vcpkg ``` git clone https://github.com/microsoft/vcpkg.git ~/zen/vcpkg ~/zen/vcpkg/bootstrap-vcpkg.sh ~/zen/vcpkg/vcpkg --version ``` -## [xmake](https://xmake.io/#/getting_started) +### [xmake](https://xmake.io/#/getting_started) ``` curl -fsSL https://xmake.io/shget.text | bash xmake --version ``` -## Zen +### Zen ``` git clone https://github.com/EpicGames/zen.git ~/zen/main cd ~/zen/main ``` -## Build +### Build ``` export VCPKG_ROOT=~/zen/vcpkg xmake config -y --mode=debug --arch=x86_64 |