Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix installation of RDKit by using -DBoost_NO_BOOST_CMAKE=ON #15051

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,12 @@ separate_build_dir = True
configopts = "-DPy_ENABLE_SHARED=1 -DRDK_INSTALL_STATIC_LIBS=OFF -DRDK_INSTALL_INTREE=OFF "
configopts += "-DRDK_BUILD_INCHI_SUPPORT=ON "
configopts += "-DBoost_INCLUDE_DIR=$EBROOTBOOST/include -DBoost_LIBRARY_DIR_RELEASE=$EBROOTBOOST/lib "
configopts += "-DBoost_NO_BOOST_CMAKE=ON "

# merge source directory into build directory in order to run the tests
buildopts = '&& cp -RT %(builddir)s/%(namelower)s-*/ ./ && '
buildopts += 'export RDBASE=$PWD && export PYTHONPATH=$PWD:$PYTHONPATH && '

# 'ctest' allows to pass additional arguments opposed to 'make test'
buildopts += 'ctest --output-on-failure'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,12 @@ separate_build_dir = True
configopts = "-DPy_ENABLE_SHARED=1 -DRDK_INSTALL_STATIC_LIBS=OFF -DRDK_INSTALL_INTREE=OFF "
configopts += "-DRDK_BUILD_INCHI_SUPPORT=ON "
configopts += "-DBoost_INCLUDE_DIR=$EBROOTBOOST/include -DBoost_LIBRARY_DIR_RELEASE=$EBROOTBOOST/lib "
configopts += "-DBoost_NO_BOOST_CMAKE=ON "

# merge source directory into build directory in order to run the tests
buildopts = '&& cp -RT %(builddir)s/%(namelower)s-*/ ./ && '
buildopts += 'export RDBASE=$PWD && export PYTHONPATH=$PWD:$PYTHONPATH && '

# 'ctest' allows to pass additional arguments opposed to 'make test'
# Exclude RGroup test on intel - https://github.com/rdkit/rdkit/issues/3291
buildopts += 'ctest --output-on-failure -E RGroup'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,15 @@ separate_build_dir = True
configopts = "-DPy_ENABLE_SHARED=1 -DRDK_INSTALL_STATIC_LIBS=OFF -DRDK_INSTALL_INTREE=OFF "
configopts += "-DRDK_BUILD_INCHI_SUPPORT=ON "
configopts += "-DBoost_INCLUDE_DIR=$EBROOTBOOST/include -DBoost_LIBRARY_DIR_RELEASE=$EBROOTBOOST/lib "
configopts += "-DBoost_NO_BOOST_CMAKE=ON "

# merge source directory into build directory in order to run the tests
buildopts = '&& cp -RT %(builddir)s/%(namelower)s-*/ ./ && '
buildopts += 'export RDBASE=$PWD && export PYTHONPATH=$PWD:$PYTHONPATH && '

# 'ctest' allows to pass additional arguments opposed to 'make test'
buildopts += 'ctest --output-on-failure '

# Exclude RGroup test when using Intel compilers - https://github.com/rdkit/rdkit/issues/3291
# buildopts += '-E RGroup'

Expand Down