From 2e5ca2ab6276b7b24895ade28e1533356ef523dc Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 16 Jan 2020 18:51:11 +0100 Subject: Testing config with travis --- README.md | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 4c74c94..632fa8b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,32 @@ # libft [![Build Status](https://api.travis-ci.com/HappyTramp/libft.svg?branch=master)](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). -- cgit