diff options
author | ormorph <roma251078@mail.ru> | 2024-07-16 21:34:55 +0300 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-17 11:16:39 +0900 |
commit | 93af744d988642bce3b925222bca0b8869b9a9b1 (patch) | |
tree | 3c9d1772e30e51ce6a50ce948d830e61c73a7113 | |
parent | 1c29d98b7874d30ef93e931bdb25199628699211 (diff) | |
download | piklab-93af744d988642bce3b925222bca0b8869b9a9b1.tar.gz piklab-93af744d988642bce3b925222bca0b8869b9a9b1.zip |
Fixed build problem with ncurses library
Signed-off-by: ormorph <roma251078@mail.ru>
(cherry picked from commit 66e7f28191f30c6b270a8791153ff4d14c1689e6)
-rw-r--r-- | ConfigureChecks.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 517c99f..769b797 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -99,7 +99,7 @@ check_c_source_compiles(" BUILD_READLINE_STANDALONE ) if( NOT BUILD_READLINE_STANDALONE ) - find_package( curses ) + find_package( Curses ) if( NOT CURSES_FOUND ) tde_message_fatal( "(n)curses is required but was not found on your system" ) endif() |