mirror of
https://github.com/boostorg/beast.git
synced 2026-01-20 16:32:09 +00:00
* Use beast exclusive valgrind feature. * Make the library modular usable. * Switch to library requirements instead of source. As source puts extra source in install targets. * Add Beast root dir for includes. As some tests refer to files relative to that. * Replace relative docca refs with project based. * Avoid mtuliple openssl configurations. * Always declare openssl. If it's empty and duplicate it will be ignored. * Add missing import-search for cconfig/predef checks. * Add requires-b2 check to top-level build file. * Bump B2 require to 5.2 * Update copyright dates. * Move inter-lib dependencies to a project variable and into the build targets. * Update build deps. * Update build deps. * The http/client/body example uses the source header from json instead of the linked library.
24 lines
550 B
Plaintext
24 lines
550 B
Plaintext
#
|
|
# Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
|
|
#
|
|
# 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
|
|
#
|
|
|
|
project : requirements <library>/boost/beast/test//lib-test ;
|
|
|
|
run
|
|
nodejs_parser.cpp
|
|
bench_parser.cpp
|
|
: : : :
|
|
bench-parser ;
|
|
|
|
explicit bench-parser ;
|
|
|
|
alias run-tests :
|
|
[ compile nodejs_parser.cpp ]
|
|
[ compile bench_parser.cpp ]
|
|
;
|