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

https://github.com/edgomez/ncurses-helloworld

Simple Hello World using the NCurses library with C++
https://github.com/edgomez/ncurses-helloworld

Last synced: 3 months ago
JSON representation

Simple Hello World using the NCurses library with C++

Awesome Lists containing this project

README

        

# NCurses Hello World in C++

## Description

Simple Hello World program using the ncurses library.

## How to build

This follows the typical CMake based build instruction workflow.

```bash
cmake -Bbuild/host -G "Ninja Multi-Config"
cmake --build build/host --config Debug
```

**NB**: The program has been compiled and tested on a typical GNU/Linux system with ncurses installed.

## Usage

The program is really just a Hello World program.

```bash
./build/host/Debug/ncurses-helloworld
```

Then, press q to quit.

## License

See [./LICENSE.md](./LICENSE.md)