mirror of
https://github.com/boostorg/leaf.git
synced 2026-02-13 12:32:13 +00:00
26 lines
810 B
Plaintext
26 lines
810 B
Plaintext
# Copyright (c) 2018 Emil Dotchevski
|
|
# Copyright (c) 2018 Second Spectrum, Inc.
|
|
|
|
# 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)
|
|
|
|
import testing ;
|
|
|
|
project
|
|
: requirements
|
|
<toolset>gcc:<cxxflags>"-std=c++11" <linkflags>"-pthread"
|
|
<toolset>darwin:<cxxflags>"-std=c++11 -Wno-unused-variable -Wno-non-virtual-dtor -Wno-dangling-else"
|
|
<toolset>msvc:<cxxflags>"-wd 4267"
|
|
<include>../../..
|
|
;
|
|
|
|
run tl_slot_test.cpp ;
|
|
run diagnostic_print_test.cpp ;
|
|
run diagnostic_information_test.cpp ;
|
|
run expect_test.cpp ;
|
|
run transport_test.cpp : : : <threading>multi ;
|
|
|
|
compile ../example/print_file_ec.cpp ;
|
|
compile ../example/print_file_eh.cpp ;
|
|
compile ../example/transport_between_threads.cpp ;
|