https://github.com/tvumcc/cmd-pong
The classic game Pong made to be played in the windows command prompt
https://github.com/tvumcc/cmd-pong
Last synced: about 2 months ago
JSON representation
The classic game Pong made to be played in the windows command prompt
- Host: GitHub
- URL: https://github.com/tvumcc/cmd-pong
- Owner: tvumcc
- Created: 2022-04-16T19:11:42.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-05T13:00:37.000Z (over 2 years ago)
- Last Synced: 2025-01-12T10:47:42.225Z (3 months ago)
- Language: C++
- Homepage:
- Size: 359 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CMD Pong

NOTE: CMD Pong also runs in Powershell despite the name.
## Building
Before attempting to build Console Pong, make sure you have CMake
installed on your system and added to your PATH.Step 1: Check if CMake is installed
```
cmake --version
```
Step 2: Generate CMake Project
I used MinGW to generate my project, but you can use "cmake -G" to see a list of other generators.
```
cmake -G "MinGW Makefiles"
```
Step 3: Build
```
cmake --build .
```