2021-09-22 10:55:15 -05:00
|
|
|
# David Calc for Windows Command Prompt and Docker
|
|
|
|
## Information
|
2020-12-15 13:53:26 -06:00
|
|
|
https://hub.docker.com/r/dugo3number2/calc
|
|
|
|
`docker pull dugo3number2/calc`
|
2021-02-09 14:18:58 -06:00
|
|
|
Repl.it: https://repl.it/@DavidDGTNT/calc
|
2021-09-22 10:55:15 -05:00
|
|
|
## Building
|
|
|
|
### GNU G++
|
|
|
|
#### With GNU Make
|
|
|
|
`make`
|
|
|
|
#### Without GNU Make
|
|
|
|
`g++ -o calc main.cpp`
|
|
|
|
### MinGW
|
|
|
|
#### With included make
|
2021-09-22 11:00:45 -05:00
|
|
|
`mingw32-make -f Makefile.win`
|
2021-09-22 10:55:15 -05:00
|
|
|
#### 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.
|