mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
websocket:
* Move echo server to test/
* Fix warnings
* Fix maskgen being uncopyable
* Simplify utf8_checker special member declarations
* Fix stream move assignable when owning the next layer
* Add javadocs for stream special members
* Add stream unit tests
* Move throwing member definitions to the .ipp file
* Use get_lowest_layer in stream declaration
* Perform type checks at each call site instead of constructor
* Demote close_code to a non-class enum:
Otherwise, application specific close codes
cannot be assigned without using static_cast.
core:
* Add streambuf_readstream special members tests
* Add move assignment operator to streambuf_readstream
* Add detail/get_lowest_layer trait
* Add static_string tests
* Move static_string from websocket to core
50 lines
1011 B
CMake
50 lines
1011 B
CMake
# Part of Beast
|
|
|
|
GroupSources(include/beast)
|
|
GroupSources(examples)
|
|
GroupSources(test)
|
|
|
|
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
|
|
http_async_server.hpp
|
|
http_stream.hpp
|
|
http_stream.ipp
|
|
http_sync_server.hpp
|
|
../test/sig_wait.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()
|