Correct CMake warning for libevent adapter example

This commit is contained in:
Björn Svensson 2021-08-16 14:06:53 +02:00 committed by michael-grunder
parent b22daec3d2
commit 3ab59a9326

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()