diff options
author | ormorph <roma251078@mail.ru> | 2024-07-16 21:34:55 +0300 |
---|---|---|
committer | ormorph <roma251078@mail.ru> | 2024-07-16 21:34:55 +0300 |
commit | 66e7f28191f30c6b270a8791153ff4d14c1689e6 (patch) | |
tree | d3153caea30b7d3652e11fb94090a7110384a2e7 | |
parent | 9b7d2a6551f34b1977bce91753cb3e4b29205708 (diff) | |
download | piklab-66e7f28191f30c6b270a8791153ff4d14c1689e6.tar.gz piklab-66e7f28191f30c6b270a8791153ff4d14c1689e6.zip |
Fixed build problem with ncurses library
Signed-off-by: ormorph <roma251078@mail.ru>
-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() |