From 8da95d97c9669cafd1ebf5d8ff2551556784e6a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Sun, 20 May 2018 15:55:17 +0200 Subject: [PATCH] Create README.md for ncurses implementation --- ncurses-implementation/README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ncurses-implementation/README.md diff --git a/ncurses-implementation/README.md b/ncurses-implementation/README.md new file mode 100644 index 0000000..844301c --- /dev/null +++ b/ncurses-implementation/README.md @@ -0,0 +1,11 @@ +# UNIX ncurses implementation + +This directory contains implementation using terminal instead of LCD display. It is based on ncurses. + +## Compilation + +Since this uses ncurses, it is required for compilation: + +``` +g++ main.cpp -lncurses +```