summaryrefslogtreecommitdiff
path: root/README.md
blob: 47db97996c7f07ebd961aeba53feae54964f9b30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30


# Build instructions

## Mac OS X

```
make
```


## Emscripten

```
emmake make emscripten
```

Note that mousewheel support requires a hacked emscripten:

In `src/library_glfw.js`, replace the first part of the mousewheel function with

```js
      GLFW.wheelPos = (event.detail || -event.deltaY);
```

In `system/include/GL/glfw.h`, replace the wheel callback typedef with

```c
typedef void (GLFWCALL * GLFWmousewheelfun)(float);
```