mirror of
https://github.com/boostorg/histogram.git
synced 2026-01-30 20:02:13 +00:00
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
# Copyright Klemens David Morgenstern 2016. 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)
|
|
|
|
|
|
|
|
#use-project /boost/histogram : ../build ;
|
|
|
|
project
|
|
: requirements
|
|
<target-os>windows:<define>WIN32_LEAN_AND_MEAN
|
|
<target-os>linux:<linkflags>-lpthread
|
|
;
|
|
|
|
|
|
import testing ;
|
|
import python ;
|
|
import os ;
|
|
|
|
test-suite ts :
|
|
[ compile check/sizeof.cpp ]
|
|
[ compile serialization.cpp ]
|
|
#[ compile check/speed_vs_root.cpp ] //not in yet, cause it needs an external library
|
|
[ run axis_test.cpp /boost//histogram /boost//test_exec_monitor : <define>BOOST_TEST_DYN_LINK=1 ]
|
|
[ run histogram_test.cpp /boost//histogram /boost//test_exec_monitor : <define>BOOST_TEST_DYN_LINK=1 ]
|
|
[ run nstore_test.cpp /boost//histogram /boost//test_exec_monitor : <define>BOOST_TEST_DYN_LINK=1 ]
|
|
[ run zero_suppression_test.cpp /boost//histogram /boost//test_exec_monitor : <define>BOOST_TEST_DYN_LINK=1 ]
|
|
;
|
|
|
|
|