From aa6e2c05397a5198eee69fa5b94e338709af8cfd Mon Sep 17 00:00:00 2001 From: shinra-electric <50119606+shinra-electric@users.noreply.github.com> Date: Wed, 22 Apr 2026 14:25:40 +0100 Subject: [PATCH] build.MD: Add pkgconf to mac brew dependencies & mention bundle flag (#1882) --- BUILD.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/BUILD.md b/BUILD.md index 1e7b7336..a23ea66a 100644 --- a/BUILD.md +++ b/BUILD.md @@ -164,7 +164,7 @@ To install the dependencies required to build Cemu, you will need to install Hom The following dependencies are required. You can install them using Homebrew with the following command: -`brew install git cmake ninja nasm automake libtool boost` +`brew install automake boost cmake git libtool nasm ninja pkgconf` ### MoltenVK @@ -189,6 +189,10 @@ Alternatively, you can use the non-privateapi version of MoltenVK, but you may e 4. `cmake --build build` 5. You should now have a Cemu executable file in the /bin folder, which you can run using `./bin/Cemu_release`. +#### Creating an app bundle +- If you want to create an app bundle instead of a raw executable, append the following flag to the command in step 3: + - `-DMACOS_BUNDLE=ON` + #### Troubleshooting steps - If step 3 gives you an error about not being able to find ninja, try appending the following to the command and try again: - **On an Apple Silicon Mac:** `-DCMAKE_MAKE_PROGRAM=/opt/homebrew/bin/ninja`