From b688f762f788aaa8c2cb8f361f90ae02e88ebf49 Mon Sep 17 00:00:00 2001 From: Dean Butcher Date: Sat, 17 Sep 2022 20:15:26 -0400 Subject: [PATCH] An even simpler way to build on Mac. --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 183ca4e..d234100 100644 --- a/README.md +++ b/README.md @@ -25,13 +25,11 @@ Using [this project](https://github.com/01e9/docker-ide) you can start IDE in do ``` ## Mac OS X building -Building on Mac OS X is fairly simple (thanks [@hyperknot](https://github.com/hyperknot)): +Building on Mac OS X is fairly simple: ``` brew install cmake assimp glm glfw freetype -mkdir build -cd build -cmake ../. -make -j8 +cmake -S . -B build +cmake --build build -j$(sysctl -n hw.logicalcpu) ``` ## Create Xcode project on Mac platform Thanks [@caochao](https://github.com/caochao):