From cd9e93692ca4970f0cebd4341aff957788c30ffa Mon Sep 17 00:00:00 2001 From: DavidDGTNT <29644042+dugo3number2@users.noreply.github.com> Date: Wed, 22 Sep 2021 10:55:15 -0500 Subject: [PATCH] Update README.md --- README.md | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b668df9..52a89a2 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,21 @@ -# David Calc -## for Windows Command Prompt and Docker +# David Calc for Windows Command Prompt and Docker +## Information https://hub.docker.com/r/dugo3number2/calc `docker pull dugo3number2/calc` Repl.it: https://repl.it/@DavidDGTNT/calc +## Building +### GNU G++ +#### With GNU Make +`make` +#### Without GNU Make +`g++ -o calc main.cpp` +### MinGW +#### With included make +`make -f Makefile.win` +#### Without make or building desktop version +`g++ -o calc.exe ` +### Visual Studio (all modern versions) +#### CLI +`cl main.cpp` +#### IDE +Open up the IDE and open the solution file. You can build it as you would normally from there.