Correct CMake warning for libevent adapter example

master
Björn Svensson 2021-08-16 14:06:53 +02:00 committed by michael-grunder
parent c4333203e3
commit a83f4b8905
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ ENDIF()
FIND_PATH(LIBEVENT event.h)
if (LIBEVENT)
ADD_EXECUTABLE(example-libevent example-libevent)
ADD_EXECUTABLE(example-libevent example-libevent.c)
TARGET_LINK_LIBRARIES(example-libevent hiredis event)
ENDIF()