diff options
author | Rick Farina (Zero_Chaos) <zerochaos@gentoo.org> | 2022-02-15 21:27:51 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2022-02-24 13:33:39 -0600 |
commit | b170ec5d755b955196902d687e1614cb2ea46803 (patch) | |
tree | 24d65cb99c6a3120853199000d8dcc5d53b934f5 /host/utils | |
parent | 0db4d4124f9eb6f14c89dc31104f273ae259c39c (diff) | |
download | uhd-b170ec5d755b955196902d687e1614cb2ea46803.tar.gz uhd-b170ec5d755b955196902d687e1614cb2ea46803.tar.bz2 uhd-b170ec5d755b955196902d687e1614cb2ea46803.zip |
cmake: ncurses: fix building with split tinfo
This fixes an issue where tinfo and ncurses are split into separate
libraries.
Diffstat (limited to 'host/utils')
-rw-r--r-- | host/utils/latency/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/host/utils/latency/CMakeLists.txt b/host/utils/latency/CMakeLists.txt index 48a3635a7..e4cd4d171 100644 --- a/host/utils/latency/CMakeLists.txt +++ b/host/utils/latency/CMakeLists.txt @@ -5,6 +5,7 @@ # SPDX-License-Identifier: GPL-3.0-or-later # +set(CURSES_NEED_NCURSES 1) find_package(Curses) if(CURSES_FOUND) |