Added module for Boost detection and automatic build-up

This commit is contained in:
Radovan Bast
2015-09-07 17:45:31 +02:00
committed by Roberto Di Remigio
parent ea694c0bdd
commit 1780e4a189
44 changed files with 510 additions and 25 deletions

View File

@ -230,5 +230,25 @@ def test_python_libs():
def test_python_libs_custom():
setup = 'python setup.py --cxx=g++ --python=%s' % sys.executable
configure_build_and_exe('python_libs_custom', setup)
python_executable = sys.executable
configure_build_and_exe('python_libs_custom', 'python setup.py --cxx=g++ --python={}'.format(python_executable))
@skip_on_windows
def test_boost_header_only():
configure_build_and_exe('boost_header_only', 'python setup.py --cxx=g++')
@skip_on_windows
def test_boost_libs():
configure_build_and_exe('boost_libs', 'python setup.py --cxx=g++')
@skip_on_windows
def test_boost_mpi_libs():
configure_build_and_exe('boost_mpi_libs', 'python setup.py --cxx=g++ --mpi')
@skip_on_windows
def test_boost_python_libs():
configure_build_and_exe('boost_python_libs', 'python setup.py --cxx=g++')