We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38f9c8c commit 32794f3Copy full SHA for 32794f3
README.md
@@ -1,5 +1,24 @@
1

2
3
+# Install
4
+
5
+This game can be installed by using make:
6
7
+```sh
8
+make install
9
+```
10
11
+Make will put the game files in `/usr/local/cpp-opengl` by default, and create a wrapper script to load shaders and textures.
12
+This can be changed with the `PREFIX` environment variable.
13
14
+Nix can also be used to run the project straight from the repo:
15
16
17
+nix run github:joinemm/cpp-opengl
18
19
20
+# Develop
21
22
## Dependencies
23
24
- [GLFW](https://github.com/glfw/glfw)
@@ -38,4 +57,11 @@ make run
38
57
make clean
39
58
```
40
59
41
-The compiled binary can be found at `./bin/out`
60
+The compiled binary can be found at `./game`
61
62
+Nix can also be used to for building:
63
64
65
+nix build
66
+cd result
67
0 commit comments