Skip to content

Commit d6f6177

Browse files
updated readme
1 parent 8ea91ef commit d6f6177

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,24 @@ Where:
3737
3838
<Path>
3939
(required) Path to CHIP8 rom.
40-
```
40+
```
41+
42+
### How to build
43+
44+
- Clone repo and navigate to the cloned directory.
45+
- Create `build` directory and navigate to it.
46+
```
47+
mkdir build && cd build
48+
```
49+
- Build project.
50+
```
51+
cmake .. -DCMAKE_BUILD_TYPE=Release
52+
```
53+
- Compile
54+
```
55+
cmake --build . --target CHIP8
56+
```
57+
- Running tests
58+
```
59+
cmake --build . --target TESTS
60+
```

0 commit comments

Comments
 (0)