Commit 8bca2d10 authored by Peter Wu's avatar Peter Wu

cmake: fix libevent binary names

Match the output produced by autotools (libevent-client instead of
libevent_client).
parent d6c3b6e8
......@@ -26,8 +26,8 @@ if(ENABLE_EXAMPLES)
)
add_executable(client client.c $<TARGET_OBJECTS:http-parser>)
add_executable(libevent_client libevent-client.c $<TARGET_OBJECTS:http-parser>)
add_executable(libevent_server libevent-server.c $<TARGET_OBJECTS:http-parser>)
add_executable(libevent-client libevent-client.c $<TARGET_OBJECTS:http-parser>)
add_executable(libevent-server libevent-server.c $<TARGET_OBJECTS:http-parser>)
add_executable(deflate deflate.c $<TARGET_OBJECTS:http-parser>)
if(ENABLE_TINY_NGHTTPD)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment