Files
boost_beast/example/websocket-server-async/CMakeLists.txt

16 lines
316 B
CMake
Raw Normal View History

2017-07-02 18:22:36 -07:00
# Part of Beast
GroupSources(include/beast beast)
GroupSources(example/common common)
2017-07-02 18:22:36 -07:00
GroupSources(example/websocket-server-async "/")
add_executable (websocket-server-async
${BEAST_INCLUDES}
${COMMON_INCLUDES}
2017-07-02 18:22:36 -07:00
websocket_server_async.cpp
)
target_link_libraries(websocket-server-async
Beast
)