1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 16:07:45 +02:00

Add cmake module for ncursesw

Default Curses module fails to detect the wide char version of curses
when both are installed. Current module should do better.
This commit is contained in:
Manuel Argüelles 2013-08-21 13:56:07 -05:00
parent 43d0d7a1c0
commit 46b69e6db1

View File

@ -15,7 +15,9 @@ add_executable(${exe_name}
chat.c
configdir.c)
include_directories(${CURSES_INCLUDE_DIR})
target_link_libraries(${exe_name}
curses)
${CURSES_LIBRARIES})
linkCoreLibraries(${exe_name})