Skip to content

Commit 8fd902f

Browse files
Update compiling.md
1 parent 4aa997c commit 8fd902f

1 file changed

Lines changed: 13 additions & 10 deletions

File tree

docs/compiling.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1-
# Compilling NEXT
1+
# Compiling NEXT
22

3-
NEXT uses a simple CMake system to build,
4-
To build (assuming you're in project root) you need to
3+
NEXT uses a simple **CMake** build system.
4+
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:
513
```bash
6-
mkdir build
7-
cd build
8-
cmake ..
9-
cmake --build .
10-
cd ..
14+
- **Linux/macOS**`next`
15+
- **Windows**`next.exe`
1116
```
12-
13-
Now, you have access to the compiled binary! (next) / (next.exe)

0 commit comments

Comments
 (0)