Merge pull request #121 from robertodr/master

Added module for Boost detection and automatic build-up
This commit is contained in:
Radovan Bast
2015-09-08 11:51:07 +02:00
27 changed files with 488 additions and 3 deletions

View File

@ -234,5 +234,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++')