1
0
Fork 0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-06-08 16:46:06 +02:00

Added verbose logic about curses library path

This commit is contained in:
Pavel Odintsov 2023-04-02 21:56:28 +01:00
parent e29263a633
commit 2b0fbc6c78

View File

@ -652,7 +652,10 @@ target_link_libraries(fast_library fastnetmon_pcap_format)
# Try to find ncurses library
find_package(Curses REQUIRED)
if(CURSES_FOUND)
if(CURSES_FOUND)
message(STATUS "Found curses library: ${CURSES_LIBRARIES}")
message(STATUS "Found curses includes: ${CURSES_INCLUDE_DIRS}")
include_directories(${CURSES_INCLUDE_DIRS})
target_link_libraries(fastnetmon_client ${CURSES_LIBRARIES})
endif()