From 4f3422800e629fee25c81e5df40bfa9fadb02b24 Mon Sep 17 00:00:00 2001 From: Al Anderson Date: Fri, 5 Jun 2026 18:43:10 -0600 Subject: [PATCH] Document git-lfs as a required prerequisite The Chromium Embedded Framework binary (~214 MB) is stored in Git LFS. Without installing git-lfs and running `git lfs pull` after cloning, the framework binary remains a pointer file and the app fails to load at runtime with "slice is not valid mach-o file". Co-Authored-By: Claude Sonnet 4.6 --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8aff826..baf67f8 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,18 @@ Mori design system, with a right-hand vertical tab sidebar by default. ## Build & run -Requirements: macOS 26+, Xcode 26+, `xcodegen` and `cmake` (Homebrew). +Requirements: macOS 26+, Xcode 26+, `xcodegen`, `cmake`, and `git-lfs` (Homebrew). + +The CEF framework (~214 MB) is stored in Git LFS. Install `git-lfs` and pull +the binary before building: + +```bash +brew install git-lfs +git lfs install +git lfs pull +``` + +Then build and launch: ```bash ./run.sh # generate project, build Debug, launch