From bb64517c33f8f8f37577e6550ce77a96cb2eb02b Mon Sep 17 00:00:00 2001 From: Jeffrey Crowell Date: Sat, 7 Feb 2026 16:24:21 -0800 Subject: [PATCH] update build instructions to show how to use configure.py --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 97ecd3bdb5..3615d3be64 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,18 @@ -build +build (Win32) + ```bash +cp /path/to/twilight-princess.ciso orig/GZ2E01/. +python3 ./configure.py +ninja cmake -B build/dusk -G "Visual Studio 17 2022" -A Win32 ``` + +build (Linux/macOS) +```bash +cp /path/to/twilight-princess.ciso orig/GZ2E01/. +python3 ./configure.py +ninja +cmake -B build/dusk -GNinja +ninja -C build/dusk +``` +