blob: f585fa83da93e252862639e6b5832132fc6e5ec9 [file] [log] [blame]
Brian Silverman7c33ab22018-08-04 17:14:51 -07001# Copyright 2012 Karsten Ahnert
2# Copyright 2012 Mario Mulansky
3# Distributed under the Boost Software License, Version 1.0.
4# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6# bring in rules for testing
7
8import testing ;
9use-project boost : $(BOOST_ROOT) ;
10
11project
12 : requirements
13 <library>/boost/test//boost_unit_test_framework
14 ;
15
16
17lib libmkl : : <name>mkl_intel_lp64 <link>shared ;
18lib libmkl_core : : <name>mkl_core <link>shared ;
19lib libmkl_intel_thread : : <name>mkl_intel_thread ;
20lib libiomp5 : : <name>iomp5 ;
21lib libpthread : : <name>pthread ;
22
23test-suite "mkl"
24 :
25 [ run check_mkl.cpp libpthread libiomp5 libmkl_core libmkl_intel_thread libmkl
26 :
27 :
28 : <link>shared:<define>BOOST_TEST_DYN_LINK=1
29 ]
30 ;