summaryrefslogtreecommitdiff
path: root/BUILD.md
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD.md')
-rw-r--r--BUILD.md29
1 files changed, 0 insertions, 29 deletions
diff --git a/BUILD.md b/BUILD.md
deleted file mode 100644
index 3a581b1..0000000
--- a/BUILD.md
+++ /dev/null
@@ -1,29 +0,0 @@
-# Build Instructions
-
-Debug build:
-cmake -S . -B build
-cmake --build build
-
-Size-optimized build:
-cmake -S . -B build -DDEMO_SIZE_OPT=ON
-cmake --build build
-
-## Windows Cross-Compilation (from macOS)
-
-Requires `mingw-w64` and `wine-stable` (for testing).
-
-1. Fetch Windows binaries:
- ```bash
- ./scripts/fetch_win_deps.sh
- ```
-
-2. Build for Windows:
- ```bash
- ./scripts/build_win.sh
- ```
- This will produce `build_win/demo64k_packed.exe`.
-
-3. Run with Wine:
- ```bash
- ./scripts/run_win.sh
- ```