David Calc | A calculator for the terminal
 
 
 
Go to file
DavidDGTNT a506be3fcb Apparently multiplication was addition? I fixed it anyway. 2021-11-11 20:34:13 -06:00
.gitignore Added .replit and .gitignore so I can work on DGTNT Calc at school 2021-02-09 20:17:42 +00:00
.replit Removed semicolon I added for some reason 2021-02-09 20:20:38 +00:00
Dockerfile Fix Dockerfile 2021-10-27 14:40:13 -05:00
LICENSE Create LICENSE 2021-01-26 08:19:03 -06:00
Makefile Make build default, make run better, add clean, install, and uninstall (install and uninstall only on linux) 2021-09-13 18:11:32 +00:00
Makefile.win Make build default, make run better, add clean, install, and uninstall (install and uninstall only on linux) 2021-09-13 18:11:32 +00:00
Makefile.wps Make build default, make run better, add clean, install, and uninstall (install and uninstall only on linux) 2021-09-13 18:11:32 +00:00
README.md Update README.md 2021-09-22 11:20:44 -05:00
calc.sln Added solution and project file for VS 2021-09-22 11:02:38 -05:00
calc.vcxproj Added solution and project file for VS 2021-09-22 11:02:38 -05:00
main.cpp Apparently multiplication was addition? I fixed it anyway. 2021-11-11 20:34:13 -06:00
windows-desktop.cpp Rename main.cpp to windows-desktop.cpp 2021-02-08 15:46:46 -06:00

README.md

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

mingw32-make -f Makefile.win

Without make or building desktop version

g++ -o calc.exe <main.cpp / windows-desktop.cpp>

Visual Studio (all modern versions)

CLI or building desktop version

cl <main.cpp / windows-desktop.cpp>

IDE

Open up the IDE and open the solution file. You can build it as you would normally from there.