Skip to content

Commit 68ad164

Browse files
authored
Create README.md
1 parent bdb683f commit 68ad164

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Quadruples in C
2+
An implementation of Three Address Code, in C. Quadruples can be used to store intermediate code during compilation.
3+
4+
### Building
5+
To build the static library, run the following commands from the terminal:
6+
```bash
7+
mkdir build && cd build && cmake .. && make ; cd ..
8+
```
9+
This will build ```libQuad.a``` in ```./bin``` directory.
10+
11+
### Usage
12+
Include ```Quad.h``` in the source file and link to ```libQuad.a``` while compiling the source file.
13+
14+
See ```include/Quad.h``` for information about functionality provided by this module.

0 commit comments

Comments
 (0)