Commit eef532c5d5b148916879f0b49ef320000d3076b9
1 parent
217854d4
Added the Readme File
Showing
1 changed file
with
20 additions
and
0 deletions
README.md
0 → 100644
1 | +# Variant | |
2 | + | |
3 | +The Variant is a General Purpose variable which can hold a value of (almost) any type. | |
4 | + | |
5 | +## Building | |
6 | +* Clone the repository | |
7 | + - `git clone http://gitlab.osdev.nl/open_source/datatypes.git` | |
8 | + | |
9 | +* Change to the git-repository and run the submodules script. | |
10 | + - `cd datatypes` | |
11 | + - `scripts/setup_submodules -i` | |
12 | + | |
13 | +* Create the build directory and build the library and tests | |
14 | + * `mkdir build` | |
15 | + * `cd build` | |
16 | + * `cmake ../` | |
17 | + * `gmake` | |
18 | + | |
19 | +* Start the test from the build directory | |
20 | + * `tests/datatypestest` | ... | ... |