Files
beast/example/websocket/client/async-local/CMakeLists.txt
2025-02-28 16:38:36 +03:30

22 lines
597 B
CMake

#
# Copyright (c) 2024 Mohammad Nejati
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
# Official repository: https://github.com/boostorg/beast
#
add_executable(websocket-client-async-local
Jamfile
websocket_client_async_local.cpp)
source_group("" FILES
Jamfile
websocket_client_async_local.cpp)
target_link_libraries(websocket-client-async-local PRIVATE Boost::beast)
set_target_properties(websocket-client-async-local
PROPERTIES FOLDER "example-websocket-client")