Refactor CMakeLists

Closes #2471
Closes #1816
This commit is contained in:
Mohammad Nejati
2024-11-20 19:54:25 +00:00
committed by Mohammad Nejati
parent a21250d12d
commit 75e45287fb
82 changed files with 916 additions and 1359 deletions

View File

@@ -1,5 +1,6 @@
#
# Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
# 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)
@@ -7,17 +8,11 @@
# Official repository: https://github.com/boostorg/beast
#
GroupSources(include/boost/beast beast)
GroupSources(example/websocket/client/awaitable "/")
add_executable (websocket-client-awaitable
${BOOST_BEAST_FILES}
add_executable(websocket-client-awaitable
Jamfile
websocket_client_awaitable.cpp
)
websocket_client_awaitable.cpp)
target_link_libraries(websocket-client-awaitable
lib-asio
lib-beast)
target_link_libraries(websocket-client-awaitable PRIVATE Boost::beast)
set_property(TARGET websocket-client-awaitable PROPERTY FOLDER "example-websocket-client")
set_target_properties(websocket-client-awaitable
PROPERTIES FOLDER "example-websocket-client")