Skip to content

Commit 5d7c599

Browse files
authored
Create README.md
1 parent b932fd4 commit 5d7c599

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Parse-Tree-in-C
2+
An implemention of Parse Tree for a Parser in C
3+
4+
### Building
5+
First, download the dependencies:
6+
```bash
7+
./download_dependencies.sh
8+
```
9+
10+
Then, to build the static library, run the following commands from the terminal:
11+
```bash
12+
mkdir build ; cd build && cmake .. && make ; cd ..
13+
```
14+
This will build ```libParseTree.a``` in ```./lib``` directory.
15+
16+
### Usage
17+
See ```include/ParseTree.h``` for information about functionality provided by this module

0 commit comments

Comments
 (0)