mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
The example HTTP server is updated to provide the correct MIME-type. It no longer uses the now-deprecated http::stream class, since that implementation does not provide flow control. A new example async_write function is provided in the asynchronous server for managing the lifetime of a message sent asynchronously. The logging is thread-safe, and a bug causing connections to malfunction is fixed.
49 lines
989 B
CMake
49 lines
989 B
CMake
# Part of Beast
|
|
|
|
GroupSources(extras/beast beast)
|
|
GroupSources(include/beast beast)
|
|
|
|
GroupSources(examples "/")
|
|
|
|
add_executable (http-crawl
|
|
${BEAST_INCLUDES}
|
|
urls_large_data.hpp
|
|
urls_large_data.cpp
|
|
http_crawl.cpp
|
|
)
|
|
|
|
if (NOT WIN32)
|
|
target_link_libraries(http-crawl ${Boost_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
|
|
endif()
|
|
|
|
add_executable (http-server
|
|
${BEAST_INCLUDES}
|
|
file_body.hpp
|
|
mime_type.hpp
|
|
http_async_server.hpp
|
|
http_sync_server.hpp
|
|
http_server.cpp
|
|
)
|
|
|
|
if (NOT WIN32)
|
|
target_link_libraries(http-server ${Boost_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
|
|
endif()
|
|
|
|
add_executable (http-example
|
|
${BEAST_INCLUDES}
|
|
http_example.cpp
|
|
)
|
|
|
|
if (NOT WIN32)
|
|
target_link_libraries(http-example ${Boost_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
|
|
endif()
|
|
|
|
add_executable (websocket-example
|
|
${BEAST_INCLUDES}
|
|
websocket_example.cpp
|
|
)
|
|
|
|
if (NOT WIN32)
|
|
target_link_libraries(websocket-example ${Boost_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
|
|
endif()
|