forked from boostorg/beast
46 lines
998 B
Plaintext
46 lines
998 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
|
|
#
|
|
|
|
alias run-tests :
|
|
[ compile core.cpp ]
|
|
[ compile http.cpp ]
|
|
[ compile ssl.cpp ]
|
|
[ compile version.cpp ]
|
|
[ compile websocket.cpp ]
|
|
[ compile zlib.cpp ]
|
|
_experimental//run-tests
|
|
core//run-tests
|
|
http//run-tests
|
|
ssl//run-tests
|
|
websocket//run-tests
|
|
zlib//run-tests
|
|
;
|
|
|
|
alias fat-tests :
|
|
_experimental//fat-tests
|
|
core//fat-tests
|
|
http//fat-tests
|
|
ssl//fat-tests
|
|
websocket//fat-tests
|
|
zlib//fat-tests
|
|
;
|
|
|
|
explicit fat-tests ;
|
|
|
|
alias run-fat-tests :
|
|
_experimental//run-fat-tests
|
|
core//run-fat-tests
|
|
http//run-fat-tests
|
|
ssl//run-fat-tests
|
|
websocket//run-fat-tests
|
|
zlib//run-fat-tests
|
|
;
|
|
|
|
explicit run-fat-tests ;
|