We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4aa997c commit 8fd902fCopy full SHA for 8fd902f
1 file changed
docs/compiling.md
@@ -1,13 +1,16 @@
1
-# Compilling NEXT
+# Compiling NEXT
2
3
-NEXT uses a simple CMake system to build,
4
-To build (assuming you're in project root) you need to
+NEXT uses a simple **CMake** build system.
+To compile (assuming you are in the project root), run:
5
+
6
+ mkdir build
7
+ cd build
8
+ cmake ..
9
+ cmake --build .
10
+ cd ..
11
12
+After this, you will have access to the compiled executable:
13
```bash
-mkdir build
-cd build
-cmake ..
-cmake --build .
-cd ..
14
+- **Linux/macOS** → `next`
15
+- **Windows** → `next.exe`
16
```
-
-Now, you have access to the compiled binary! (next) / (next.exe)
0 commit comments