Update README.md

main
DavidDGTNT 2021-09-22 10:55:15 -05:00 committed by GitHub
parent 2bf4c9a9d2
commit cd9e93692c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 2 deletions

View File

@ -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 <main.cpp / windows-desktop.cpp>`
### 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.