Rename Cmake variables for clarity

This commit is contained in:
Vinnie Falco
2017-10-30 08:57:31 -07:00
parent 42679ee0bc
commit e39e4c73bf
50 changed files with 65 additions and 69 deletions

View File

@ -1,6 +1,7 @@
Version 132: Version 132:
* Tidy up project folders in CMakeLists.txt * Tidy up project folders in CMakeLists.txt
* Rename Cmake variables for clarity
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

View File

@ -173,19 +173,15 @@ if (OPENSSL_FOUND)
include_directories (${OPENSSL_INCLUDE_DIR}) include_directories (${OPENSSL_INCLUDE_DIR})
endif() endif()
file (GLOB_RECURSE BOOST_BEAST_INCLUDES file (GLOB_RECURSE BOOST_BEAST_FILES
${PROJECT_SOURCE_DIR}/include/boost/beast/*.hpp ${PROJECT_SOURCE_DIR}/include/boost/beast/*.hpp
${PROJECT_SOURCE_DIR}/include/boost/beast/*.ipp ${PROJECT_SOURCE_DIR}/include/boost/beast/*.ipp
) )
file (GLOB_RECURSE COMMON_INCLUDES file (GLOB_RECURSE COMMON_FILES
${PROJECT_SOURCE_DIR}/example/common/*.hpp ${PROJECT_SOURCE_DIR}/example/common/*.hpp
) )
file (GLOB_RECURSE EXAMPLE_INCLUDES
${PROJECT_SOURCE_DIR}/example/*.hpp
)
if (Beast_BUILD_EXAMPLES AND if (Beast_BUILD_EXAMPLES AND
(NOT "${VARIANT}" STREQUAL "coverage") AND (NOT "${VARIANT}" STREQUAL "coverage") AND
(NOT "${VARIANT}" STREQUAL "ubasan")) (NOT "${VARIANT}" STREQUAL "ubasan"))

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/advanced/server-flex "/") GroupSources(example/advanced/server-flex "/")
add_executable (advanced-server-flex add_executable (advanced-server-flex
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/detect_ssl.hpp ${PROJECT_SOURCE_DIR}/example/common/detect_ssl.hpp
${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp ${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp
${PROJECT_SOURCE_DIR}/example/common/ssl_stream.hpp ${PROJECT_SOURCE_DIR}/example/common/ssl_stream.hpp

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/advanced/server "/") GroupSources(example/advanced/server "/")
add_executable (advanced-server add_executable (advanced-server
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
advanced_server.cpp advanced_server.cpp
) )

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/echo-op "/") GroupSources(example/echo-op "/")
add_executable (echo-op add_executable (echo-op
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
echo_op.cpp echo_op.cpp
) )

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/http/client/async-ssl "/") GroupSources(example/http/client/async-ssl "/")
add_executable (http-client-async-ssl add_executable (http-client-async-ssl
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/root_certificates.hpp ${PROJECT_SOURCE_DIR}/example/common/root_certificates.hpp
Jamfile Jamfile
http_client_async_ssl.cpp http_client_async_ssl.cpp

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/http/client/async "/") GroupSources(example/http/client/async "/")
add_executable (http-client-async add_executable (http-client-async
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
http_client_async.cpp http_client_async.cpp
) )

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/http/client/coro-ssl "/") GroupSources(example/http/client/coro-ssl "/")
add_executable (http-client-coro-ssl add_executable (http-client-coro-ssl
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/root_certificates.hpp ${PROJECT_SOURCE_DIR}/example/common/root_certificates.hpp
Jamfile Jamfile
http_client_coro_ssl.cpp http_client_coro_ssl.cpp

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/http/client/coro "/") GroupSources(example/http/client/coro "/")
add_executable (http-client-coro add_executable (http-client-coro
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
http_client_coro.cpp http_client_coro.cpp
) )

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/http/client/crawl "/") GroupSources(example/http/client/crawl "/")
add_executable (http-crawl add_executable (http-crawl
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
urls_large_data.hpp urls_large_data.hpp
urls_large_data.cpp urls_large_data.cpp

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/http/client/sync-ssl "/") GroupSources(example/http/client/sync-ssl "/")
add_executable (http-client-sync-ssl add_executable (http-client-sync-ssl
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/root_certificates.hpp ${PROJECT_SOURCE_DIR}/example/common/root_certificates.hpp
Jamfile Jamfile
http_client_sync_ssl.cpp http_client_sync_ssl.cpp

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/http/client/sync "/") GroupSources(example/http/client/sync "/")
add_executable (http-client-sync add_executable (http-client-sync
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
http_client_sync.cpp http_client_sync.cpp
) )

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/http/server/async-ssl "/") GroupSources(example/http/server/async-ssl "/")
add_executable (http-server-async-ssl add_executable (http-server-async-ssl
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp ${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp
Jamfile Jamfile
http_server_async_ssl.cpp http_server_async_ssl.cpp

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/http/server/async "/") GroupSources(example/http/server/async "/")
add_executable (http-server-async add_executable (http-server-async
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
http_server_async.cpp http_server_async.cpp
) )

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/http/server/coro-ssl "/") GroupSources(example/http/server/coro-ssl "/")
add_executable (http-server-coro-ssl add_executable (http-server-coro-ssl
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp ${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp
Jamfile Jamfile
http_server_coro_ssl.cpp http_server_coro_ssl.cpp

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/http/server/coro "/") GroupSources(example/http/server/coro "/")
add_executable (http-server-coro add_executable (http-server-coro
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
http_server_coro.cpp http_server_coro.cpp
) )

View File

@ -12,8 +12,8 @@ GroupSources(example/common common)
GroupSources(example/http/server/fast "/") GroupSources(example/http/server/fast "/")
add_executable (http-server-fast add_executable (http-server-fast
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${COMMON_INCLUDES} ${COMMON_FILES}
Jamfile Jamfile
fields_alloc.hpp fields_alloc.hpp
http_server_fast.cpp http_server_fast.cpp

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/http/server/flex "/") GroupSources(example/http/server/flex "/")
add_executable (http-server-flex add_executable (http-server-flex
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/detect_ssl.hpp ${PROJECT_SOURCE_DIR}/example/common/detect_ssl.hpp
${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp ${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp
Jamfile Jamfile

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/http/server/small "/") GroupSources(example/http/server/small "/")
add_executable (http-server-small add_executable (http-server-small
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
http_server_small.cpp http_server_small.cpp
) )

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/http/server/stackless-ssl "/") GroupSources(example/http/server/stackless-ssl "/")
add_executable (http-server-stackless-ssl add_executable (http-server-stackless-ssl
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp ${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp
Jamfile Jamfile
http_server_stackless_ssl.cpp http_server_stackless_ssl.cpp

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/http/server/stackless "/") GroupSources(example/http/server/stackless "/")
add_executable (http-server-stackless add_executable (http-server-stackless
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
http_server_stackless.cpp http_server_stackless.cpp
) )

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/http/server/sync-ssl "/") GroupSources(example/http/server/sync-ssl "/")
add_executable (http-server-sync-ssl add_executable (http-server-sync-ssl
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp ${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp
Jamfile Jamfile
http_server_sync_ssl.cpp http_server_sync_ssl.cpp

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/http/server/sync "/") GroupSources(example/http/server/sync "/")
add_executable (http-server-sync add_executable (http-server-sync
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
http_server_sync.cpp http_server_sync.cpp
) )

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/websocket/client/async-ssl "/") GroupSources(example/websocket/client/async-ssl "/")
add_executable (websocket-client-async-ssl add_executable (websocket-client-async-ssl
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/root_certificates.hpp ${PROJECT_SOURCE_DIR}/example/common/root_certificates.hpp
Jamfile Jamfile
websocket_client_async_ssl.cpp websocket_client_async_ssl.cpp

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/websocket/client/async "/") GroupSources(example/websocket/client/async "/")
add_executable (websocket-client-async add_executable (websocket-client-async
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
websocket_client_async.cpp websocket_client_async.cpp
) )

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/websocket/client/coro-ssl "/") GroupSources(example/websocket/client/coro-ssl "/")
add_executable (websocket-client-coro-ssl add_executable (websocket-client-coro-ssl
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/root_certificates.hpp ${PROJECT_SOURCE_DIR}/example/common/root_certificates.hpp
Jamfile Jamfile
websocket_client_coro_ssl.cpp websocket_client_coro_ssl.cpp

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/websocket/client/coro "/") GroupSources(example/websocket/client/coro "/")
add_executable (websocket-client-coro add_executable (websocket-client-coro
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
websocket_client_coro.cpp websocket_client_coro.cpp
) )

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/websocket/client/sync-ssl "/") GroupSources(example/websocket/client/sync-ssl "/")
add_executable (websocket-client-sync-ssl add_executable (websocket-client-sync-ssl
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/root_certificates.hpp ${PROJECT_SOURCE_DIR}/example/common/root_certificates.hpp
Jamfile Jamfile
websocket_client_sync_ssl.cpp websocket_client_sync_ssl.cpp

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/websocket/client/sync "/") GroupSources(example/websocket/client/sync "/")
add_executable (websocket-client-sync add_executable (websocket-client-sync
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
websocket_client_sync.cpp websocket_client_sync.cpp
) )

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/websocket/server/async-ssl "/") GroupSources(example/websocket/server/async-ssl "/")
add_executable (websocket-server-async-ssl add_executable (websocket-server-async-ssl
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp ${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp
Jamfile Jamfile
websocket_server_async_ssl.cpp websocket_server_async_ssl.cpp

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/websocket/server/async "/") GroupSources(example/websocket/server/async "/")
add_executable (websocket-server-async add_executable (websocket-server-async
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
websocket_server_async.cpp websocket_server_async.cpp
) )

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/websocket/server/coro-ssl "/") GroupSources(example/websocket/server/coro-ssl "/")
add_executable (websocket-server-coro-ssl add_executable (websocket-server-coro-ssl
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp ${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp
Jamfile Jamfile
websocket_server_coro_ssl.cpp websocket_server_coro_ssl.cpp

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/websocket/server/coro "/") GroupSources(example/websocket/server/coro "/")
add_executable (websocket-server-coro add_executable (websocket-server-coro
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
websocket_server_coro.cpp websocket_server_coro.cpp
) )

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/websocket/server/fast "/") GroupSources(example/websocket/server/fast "/")
add_executable (websocket-server-fast add_executable (websocket-server-fast
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
websocket_server_fast.cpp websocket_server_fast.cpp
) )

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/websocket/server/stackless-ssl "/") GroupSources(example/websocket/server/stackless-ssl "/")
add_executable (websocket-server-stackless-ssl add_executable (websocket-server-stackless-ssl
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp ${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp
Jamfile Jamfile
websocket_server_stackless_ssl.cpp websocket_server_stackless_ssl.cpp

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/websocket/server/stackless "/") GroupSources(example/websocket/server/stackless "/")
add_executable (websocket-server-stackless add_executable (websocket-server-stackless
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
websocket_server_stackless.cpp websocket_server_stackless.cpp
) )

View File

@ -13,7 +13,7 @@ if (OPENSSL_FOUND)
GroupSources(example/websocket/server/sync-ssl "/") GroupSources(example/websocket/server/sync-ssl "/")
add_executable (websocket-server-sync-ssl add_executable (websocket-server-sync-ssl
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp ${PROJECT_SOURCE_DIR}/example/common/server_certificate.hpp
Jamfile Jamfile
websocket_server_sync_ssl.cpp websocket_server_sync_ssl.cpp

View File

@ -11,7 +11,7 @@ GroupSources(include/boost/beast beast)
GroupSources(example/websocket/server/sync "/") GroupSources(example/websocket/server/sync "/")
add_executable (websocket-server-sync add_executable (websocket-server-sync
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
Jamfile Jamfile
websocket_server_sync.cpp websocket_server_sync.cpp
) )

View File

@ -13,8 +13,8 @@ GroupSources(subtree/unit_test/include/boost/beast extras)
GroupSources(test/beast "/") GroupSources(test/beast "/")
add_executable (tests-beast add_executable (tests-beast
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${EXTRAS_INCLUDES} ${EXTRAS_FILES}
${TEST_MAIN} ${TEST_MAIN}
Jamfile Jamfile
core.cpp core.cpp

View File

@ -13,8 +13,8 @@ GroupSources(include/boost/beast beast)
GroupSources(test/beast/core "/") GroupSources(test/beast/core "/")
add_executable (tests-beast-core add_executable (tests-beast-core
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${EXTRAS_INCLUDES} ${EXTRAS_FILES}
${TEST_MAIN} ${TEST_MAIN}
Jamfile Jamfile
buffer_test.hpp buffer_test.hpp

View File

@ -13,8 +13,8 @@ GroupSources(include/boost/beast beast)
GroupSources(test/beast/http "/") GroupSources(test/beast/http "/")
add_executable (tests-beast-http add_executable (tests-beast-http
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${EXTRAS_INCLUDES} ${EXTRAS_FILES}
${TEST_MAIN} ${TEST_MAIN}
Jamfile Jamfile
message_fuzz.hpp message_fuzz.hpp

View File

@ -13,8 +13,8 @@ GroupSources(include/boost/beast beast)
GroupSources(test/beast/websocket "/") GroupSources(test/beast/websocket "/")
add_executable (tests-beast-websocket add_executable (tests-beast-websocket
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${EXTRAS_INCLUDES} ${EXTRAS_FILES}
${TEST_MAIN} ${TEST_MAIN}
Jamfile Jamfile
test.hpp test.hpp

View File

@ -18,8 +18,8 @@ if (MSVC)
endif() endif()
add_executable (tests-beast-zlib add_executable (tests-beast-zlib
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${EXTRAS_INCLUDES} ${EXTRAS_FILES}
${ZLIB_SOURCES} ${ZLIB_SOURCES}
${TEST_MAIN} ${TEST_MAIN}
Jamfile Jamfile

View File

@ -13,8 +13,8 @@ GroupSources(include/boost/beast beast)
GroupSources(test/bench/buffers "/") GroupSources(test/bench/buffers "/")
add_executable (bench-buffers add_executable (bench-buffers
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${EXTRAS_INCLUDES} ${EXTRAS_FILES}
${TEST_MAIN} ${TEST_MAIN}
Jamfile Jamfile
bench_buffers.cpp bench_buffers.cpp

View File

@ -14,8 +14,8 @@ GroupSources(test/beast/http "/")
GroupSources(test/bench/parser "/") GroupSources(test/bench/parser "/")
add_executable (bench-parser add_executable (bench-parser
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${EXTRAS_INCLUDES} ${EXTRAS_FILES}
${TEST_MAIN} ${TEST_MAIN}
Jamfile Jamfile
${PROJECT_SOURCE_DIR}/test/beast/http/message_fuzz.hpp ${PROJECT_SOURCE_DIR}/test/beast/http/message_fuzz.hpp

View File

@ -13,8 +13,8 @@ GroupSources(include/boost/beast beast)
GroupSources(test/bench/utf8_checker "/") GroupSources(test/bench/utf8_checker "/")
add_executable (bench-utf8-checker add_executable (bench-utf8-checker
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${EXTRAS_INCLUDES} ${EXTRAS_FILES}
${TEST_MAIN} ${TEST_MAIN}
Jamfile Jamfile
bench_utf8_checker.cpp bench_utf8_checker.cpp

View File

@ -14,9 +14,9 @@ GroupSources(subtree/unit_test/include/boost/beast extras)
GroupSources(test/bench/wsload "/") GroupSources(test/bench/wsload "/")
add_executable (bench-wsload add_executable (bench-wsload
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${COMMON_INCLUDES} ${COMMON_FILES}
${EXTRAS_INCLUDES} ${EXTRAS_FILES}
Jamfile Jamfile
wsload.cpp wsload.cpp
) )

View File

@ -18,8 +18,8 @@ if (MSVC)
endif() endif()
add_executable (bench-zlib add_executable (bench-zlib
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${EXTRAS_INCLUDES} ${EXTRAS_FILES}
${ZLIB_SOURCES} ${ZLIB_SOURCES}
${TEST_MAIN} ${TEST_MAIN}
Jamfile Jamfile

View File

@ -14,9 +14,8 @@ GroupSources(include/boost/beast beast)
GroupSources(test/doc "/") GroupSources(test/doc "/")
add_executable (tests-doc add_executable (tests-doc
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${EXAMPLE_INCLUDES} ${EXTRAS_FILES}
${EXTRAS_INCLUDES}
${TEST_MAIN} ${TEST_MAIN}
Jamfile Jamfile
core_examples.cpp core_examples.cpp

View File

@ -14,8 +14,8 @@ GroupSources(include/boost/beast beast)
GroupSources(test/example/common "/") GroupSources(test/example/common "/")
add_executable (tests-example-common add_executable (tests-example-common
${BOOST_BEAST_INCLUDES} ${BOOST_BEAST_FILES}
${COMMON_INCLUDES} ${COMMON_FILES}
Jamfile Jamfile
detect_ssl.cpp detect_ssl.cpp
root_certificates.cpp root_certificates.cpp