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++
- Host: GitHub
- URL: https://github.com/edgomez/ncurses-helloworld
- Owner: edgomez
- License: other
- Created: 2023-11-22T23:53:02.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-23T00:08:39.000Z (over 1 year ago)
- Last Synced: 2025-01-11T15:13:30.068Z (4 months ago)
- Language: C++
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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)