From 0610ccec2f5a75e6a5ffa4b16f2a49b74055311e Mon Sep 17 00:00:00 2001 From: Fred Nicolson <6798200+Cloaked9000@users.noreply.github.com> Date: Thu, 13 Dec 2018 15:52:40 +0000 Subject: [PATCH] Don't build concurrent HTTP example on Windows --- examples/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index a391ece..5d1d86e 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,3 +1,5 @@ add_subdirectory(simple_http_server_and_client) add_subdirectory(simple_websocket_server_and_client) -add_subdirectory(concurrent_http_server) +if (NOT WIN32) + add_subdirectory(concurrent_http_server) +endif()