We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59e123a commit 097bc40Copy full SHA for 097bc40
.gitignore
@@ -1 +1,3 @@
1
-/build/
+/build/
2
+/lib/glfw
3
+/lib/glm
readme.md
@@ -3,11 +3,18 @@
### Windows
4
5
Use the ```VsDevCmd.bat``` with ```-arch=x64```.
6
-
7
- git submodule init
8
- git submodule update
9
- mkdir build
10
- cd build
+
+ git clone --recursive -j8 https://github.com/marcgpuig/Andes.git
+ cd Andes && mkdir build && cd build
11
cmake -G "NMake Makefiles" ..
12
- nmake
+ nmake && .\Andes.exe
+*-j8 will only work with version 1.9 or later of Git*
13
14
+If you already cloned the repo:
15
16
+ cd Andes
17
+ git submodule update --init --recursive
18
+ mkdir build && cd build
19
+ cmake -G "NMake Makefiles" ..
20
0 commit comments