We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdb683f commit 68ad164Copy full SHA for 68ad164
README.md
@@ -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