Jamfile.v2 810 B

123456789101112131415161718192021222324252627282930
  1. # 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. # bring in rules for testing
  6. import testing ;
  7. use-project boost : $(BOOST_ROOT) ;
  8. project
  9. : requirements
  10. <library>/boost/test//boost_unit_test_framework
  11. ;
  12. lib libmkl : : <name>mkl_intel_lp64 <link>shared ;
  13. lib libmkl_core : : <name>mkl_core <link>shared ;
  14. lib libmkl_intel_thread : : <name>mkl_intel_thread ;
  15. lib libiomp5 : : <name>iomp5 ;
  16. lib libpthread : : <name>pthread ;
  17. test-suite "mkl"
  18. :
  19. [ run check_mkl.cpp libpthread libiomp5 libmkl_core libmkl_intel_thread libmkl
  20. :
  21. :
  22. : <link>shared:<define>BOOST_TEST_DYN_LINK=1
  23. ]
  24. ;