2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-14 01:02:16 +00:00
Files
ublas/Jamfile.v2
Michael Stevens 88c5caeea7 From uBLAS project. Ready for regression testing for 1.32.0
svn path=/trunk/boost/libs/numeric/ublas/; revision=23424
2004-07-10 08:40:37 +00:00

42 lines
1.0 KiB
Plaintext

# Copyright Michael Stevens 2004
# Use, modification, and distribution is subject to 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)
# bring in rules for testing
# Boost uBLAS library project and testing Jamfile
import testing ;
# Project requirements
project ublastest
: requirements
<define>BOOST_UBLAS_SAFE
<define>USE_RANGE
<define>USE_ADAPTOR
<toolset>intel:<cxxflags>"-Xc" # Strict mode
<toolset>borland:<cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
<toolset>kylix:<cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
;
build-project test1 ;
build-project test2 ;
build-project test3 ;
build-project test4 ;
build-project test5 ;
build-project test6 ;
build-project test7 ;
test-suite "uBLAS"
: [ compile concepts.cpp ]
[ run test1 ]
[ run test2 ]
[ run test3 ]
[ run test4 ]
[ run test5 ]
[ run test6 ]
[ run test7 ]
;