Removed automatic ping pong response, and disconnection from fr::WebSocket, as it should be handled by the library user, really. Updated ReadMe.
9 lines
297 B
CMake
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")
|