An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# CMD Pong

![Alt Text](/console-pong.gif)

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 .
```