From 00d0716e8dbd071e49f8da0d5d28aacd6605889e Mon Sep 17 00:00:00 2001 From: "V. R. Miguel" <36349314+vrmiguel@users.noreply.github.com> Date: Thu, 4 Jun 2020 02:21:08 -0300 Subject: [PATCH] Update README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 938eaad..d32faa1 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,13 @@ # minishell-2 Unix shell written in pure C++11. + +## Building + +### With QMake + +Run ```qmake && make``` on the root folder. + +### Without QMake + +Run +``` 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 ``` -- 2.11.4.GIT