Unknown 13f709aebb Added examples for a simple WebSocket client and Server.
Removed automatic ping pong response, and disconnection from fr::WebSocket, as it should be handled by the library user, really.

Updated ReadMe.
2018-03-03 16:02:17 +00:00

9 lines
297 B
CMake

add_executable(simple_http_client SimpleHttpClient.cpp)
target_link_libraries(simple_http_client frnetlib)
add_executable(simple_http_server SimpleHttpServer.cpp)
target_link_libraries(simple_http_server frnetlib)
install(TARGETS simple_http_client simple_http_server
DESTINATION "bin")