diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-01-16 18:51:11 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-01-16 18:52:57 +0100 |
| commit | 2e5ca2ab6276b7b24895ade28e1533356ef523dc (patch) | |
| tree | f7afcc1bf3fa0a1c91303b9440305cfff9a9eec8 /README.md | |
| parent | 14430cdd03dd2487c086e53ffcf0222ed3ffc126 (diff) | |
| download | libft-2e5ca2ab6276b7b24895ade28e1533356ef523dc.tar.gz libft-2e5ca2ab6276b7b24895ade28e1533356ef523dc.tar.bz2 libft-2e5ca2ab6276b7b24895ade28e1533356ef523dc.zip | |
Testing config with travis
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 31 |
1 files changed, 28 insertions, 3 deletions
@@ -1,7 +1,32 @@ # libft [](https://travis-ci.com/HappyTramp/libft) -The state of this repo when I pass can be checked with the [raw](http://github.com/HappyTramp/libft/tree/raw) tag. +libft is an extension/remake of the standard library. -I have both the pre 2019 and current functions. There is also my [get\_nex\_line](http://github.com/HappyTramp/get_next_line) and [ft\_printf](http://github.com/HappyTramp/ft_printf) in the mix. +## Getting Started -The [rendu](http://github.com/HappyTramp/libft/tree/rendu) branch is the one I use for my other projects, it doesnt contain .gitignore, README.md and subjects. +``` +git clone https://github.com/HappyTramp/libft libft +cd libft +make all +``` + +This will produce a `libft.a` library which you can link to your project. + +## Testing + +To install the test, you will have to clone this repo with the `--recurse-submodules` flag or run the following commands: + +``` +git submodule init +git submodule update +``` + +Then: `make test` + +## Dependencies + +* [CTest](https://github.com/HappyTramp/ctest) - my testing library + +### School turn in + +The state of this project when I turned it in for correction is [here](http://github.com/HappyTramp/libft/tree/raw). |
