Adding basic ncurses demo project.
This commit is contained in:
parent
4282cc4b12
commit
f3563ce6d1
5 changed files with 60 additions and 0 deletions
21
2024/07/ncurses_demo1/README.md
Normal file
21
2024/07/ncurses_demo1/README.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
# NCurses Demo1
|
||||
|
||||
## Installation
|
||||
|
||||
```
|
||||
python -m venv .venv
|
||||
source $(readlink -f .venv/bin/activate)
|
||||
python -m pip install conan
|
||||
conan install conanfile.py --build=missing
|
||||
cmake ../../ -DCMAKE_TOOLCHAIN_FILE=generators/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=release -DCMAKE_VERBOSE_MAKEFILE=true
|
||||
make
|
||||
```
|
||||
|
||||
## Running
|
||||
|
||||
in build/Release run ./ncurses_demo1
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
Sometimes you can issue with opening terminal xterm-*
|
||||
Check TERMINFO if they point correctly or you have properly set ~/.terminfo (you can symlink it)
|
Loading…
Add table
Add a link
Reference in a new issue