mirror of
https://github.com/pevans/erc-c.git
synced 2024-11-27 05:49:24 +00:00
Baby's first README
This commit is contained in:
parent
54473be302
commit
fc4a6f19e6
23
README.md
Normal file
23
README.md
Normal file
@ -0,0 +1,23 @@
|
||||
## Compiling and installing
|
||||
|
||||
This software uses CMake to build its makefiles, so if you're familiar with that, you should feel somewhat at home. Do this:
|
||||
|
||||
```
|
||||
cd build
|
||||
cmake ..
|
||||
make
|
||||
```
|
||||
|
||||
This should produce an executable of the emulator, which you can install wherever you wish.
|
||||
|
||||
## Testing
|
||||
|
||||
If you're feeling a bit nosy, you can run unit tests by doing the following:
|
||||
|
||||
```
|
||||
cd tests/build
|
||||
cmake ..
|
||||
make; ./emp-test
|
||||
```
|
||||
|
||||
This will execute the testing build of the software, which is handled through [Criterion](https://github.com/Snaipe/Criterion). Note you must have already installed Criterion for this to work.
|
Loading…
Reference in New Issue
Block a user