Skip to content

Commit 01994e9

Browse files
jdeokkimdiskhkme
andcommitted
Update build instructions for Windows
Co-authored-by: Hyungki Kim <[email protected]>
1 parent 2405368 commit 01994e9

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

Makefile.mingw

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
# =============================================================================
2828

2929
# TODO: Edit these values to match your raylib installation path!
30-
RAYLIB_INCLUDE_PATH = ../raylib/src
31-
RAYLIB_LIBRARY_PATH = ../raylib/src
30+
RAYLIB_INCLUDE_PATH ?= ../raylib/src
31+
RAYLIB_LIBRARY_PATH ?= ../raylib/src
3232

3333
BINARY_PATH = bin
3434
INCLUDE_PATH = include

README.md

+8-5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ A [raylib](https://github.com/raysan5/raylib) demo to visualize the Model, View,
1010

1111
This project is a C rewrite of [@diskhkme](https://github.com/diskhkme)'s [MVP Transform Visualizer](https://github.com/diskhkme/mvp_transform_visualize) with additional features, for the "Computer Graphics" (1214-3005) course at Chungnam National University.
1212

13+
**[Feel free to try the WebAssembly version here!](https://jdeokkim.github.io/projects/mvp-demo/)**
14+
1315
https://github.com/user-attachments/assets/4b7cda17-2f32-4651-9297-7070fb274da0
1416

1517
## Controls
@@ -39,14 +41,15 @@ https://github.com/user-attachments/assets/4b7cda17-2f32-4651-9297-7070fb274da0
3941
Download the latest release of w64devkit from [here](https://github.com/skeeto/w64devkit/releases), extract the `.zip` file to your working directory, and run `w64devkit.exe`.
4042

4143
```console
42-
$ cd .. && wget https://github.com/raysan5/raylib/archive/refs/tags/5.0.zip
43-
$ unzip 5.0.zip && mv raylib-5.0 raylib
44-
$ cd raylib/src && make
44+
$ wget -O raylib.zip https://github.com/raysan5/raylib/archive/refs/tags/5.5.zip
45+
$ unzip raylib.zip && mv raylib-5.5 raylib
46+
$ make -C raylib/src
4547
```
4648

4749
```console
48-
$ git clone https://github.com/jdeokkim/mvp-demo
49-
$ cd mvp-demo && make -f Makefile.mingw
50+
$ wget https://github.com/jdeokkim/mvp-demo/archive/refs/heads/main.zip
51+
$ unzip main.zip && mv mvp-demo-main mvp-demo
52+
$ make -C mvp-demo -f Makefile.mingw
5053
```
5154

5255
</details>

0 commit comments

Comments
 (0)