Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tony/ncurses-programming-howto-examples
CMake examples for code in http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/index.html
https://github.com/tony/ncurses-programming-howto-examples
c cmake curse ncurses tui tutorial
Last synced: 11 days ago
JSON representation
CMake examples for code in http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/index.html
- Host: GitHub
- URL: https://github.com/tony/ncurses-programming-howto-examples
- Owner: tony
- License: mit
- Created: 2016-07-23T18:17:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-07-24T02:50:42.000Z (over 3 years ago)
- Last Synced: 2024-10-17T10:21:48.288Z (21 days ago)
- Topics: c, cmake, curse, ncurses, tui, tutorial
- Language: C
- Size: 32.2 KB
- Stars: 134
- Watchers: 7
- Forks: 26
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
NCURSES-Programming-HOWTO examples
==================================CMake examples for code in http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/index.html
Requires `CMake`_, `ncurses`_ library, C compiler (clang, gcc).
You can find ncurses for linux, BSD and OS X with your package manager
under names package names like
``ncurses-devel``, ``libncurses-dev`` and ``ncurses``.Building
--------Easiest:
.. code-block:: sh
$ make debug
.. code-block:: sh
$ make debug_ninja
Manual:
.. code-block:: sh
$ mkdir build
$ cd build
$ makeThe examples will be in ``./build/examples/``.
.. CMake: https://cmake.org/
.. ncurses: https://www.gnu.org/software/ncurses/