Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ set(CMAKE_EXE_LINKER_FLAGS "-pthread")

# Add the required ncurses library.
set(CURSES_NEED_NCURSES TRUE)
set(CURSES_MINIMUM_VERSION 6)
find_package(Curses REQUIRED)
link_libraries(${CURSES_LIBRARIES})

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ zypper install TMatrix
```

### Download and install on other GNU/Linux distributions
The prebuilt TMatrix uses **version 5** of the ncurses library.
The prebuilt TMatrix uses **version 6** of the ncurses library.
To install the library on Ubuntu or Debian run:
```shell
sudo apt-get install libncurses5
sudo apt-get install libncurses-dev
```
Now that you have the required library you can install and run tmatrix:
```shell
Expand Down