Update the README

This commit is contained in:
Dan Frumin 2017-08-24 16:53:58 +02:00
parent c23ea61353
commit c7aa3d581f
1 changed files with 13 additions and 5 deletions

View File

@ -2,12 +2,20 @@
Needed: https://github.com/HoTT/HoTT
More information on the work is in HITs.pdf.
The only part of the project that is buildable is the `FiniteSets` library.
# Building
Make sure that you have [hoqc](https://github.com/HoTT/HoTT) installed. Then generate
the Makefile and build the project:
Before proceeding make sure that you have [hoqc](https://github.com/HoTT/HoTT) installed.
coq_makefile -f _CoqProject -o Makefile
make
1. Build the `HitTactics` library in `prelude`.
```
cd prelude
hoqc HitTactics
```
2. Generate the Makefile and build the `FiniteSets` library
```
cd ../FiniteSets
coq_makefile -f _CoqProject -o Makefile
make
```