Add license and Semaphore build badges
[minishell-2.git] / README.md
blobce59cbe5c3f6565df86e9e2dd1abb663d34ba072
1 # minishell-2 [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Semaphore Build](https://vrmiguel.semaphoreci.com/badges/minishell-2/branches/master.svg?style=shields)](https://vrmiguel.semaphoreci.com/projects/minishell-2/)
2 Unix shell written in pure C++11.
4 ## Building
6 ### With QMake
8 Run ```qmake && make``` on the root folder.
10 ### Without QMake
12 Run 
13 ``` g++ -c -pipe -std=gnu++11 -Wall -W -fPIC -I. Sources/main.cpp Sources/opsys.cpp Sources/input.cpp ``` followed by ``` g++ -Wl,-O1 -o minishell-2 input.o main.o opsys.o ```