# NCURSES-Programming-HOWTO-examples **Repository Path**: liqinglucky/NCURSES-Programming-HOWTO-examples ## Basic Information - **Project Name**: NCURSES-Programming-HOWTO-examples - **Description**: TUI(Text User Interface) ncurses库的用例。 - **Primary Language**: C - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-07-17 - **Last Updated**: 2022-09-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: TUI, ncurses ## 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 $ make The examples will be in ``./build/examples/``. .. CMake: https://cmake.org/ .. ncurses: https://www.gnu.org/software/ncurses/