aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects
diff options
context:
space:
mode:
authorGravatar Greg Landrum <greg.landrum@gmail.com>2020-07-17 17:25:16 +0200
committerGravatar GitHub <noreply@github.com>2020-07-17 08:25:16 -0700
commit4fb930fa5253e2489a436757aea6204f11beca25 (patch)
treebf881694989abc94b1847879bf039f6e9c7a3fc3 /projects
parentd70f7933536e87a5b5722d45a0a476f8501633e0 (diff)
Add new RDKit dependency (freetype) (#4150)
* Add new RDKit dependency (freetype) FIxes Issue #23703 * just remove the freetype requirement for now otherwise we have to build that static and that's a mess * Update Dockerfile
Diffstat (limited to 'projects')
-rwxr-xr-xprojects/rdkit/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/rdkit/build.sh b/projects/rdkit/build.sh
index b571db59..2ad830e9 100755
--- a/projects/rdkit/build.sh
+++ b/projects/rdkit/build.sh
@@ -43,7 +43,7 @@ cd $SRC/boost_1_69_0 && \
cd $SRC/rdkit
mkdir -p build && cd build
-cmake -DRDK_BUILD_PYTHON_WRAPPERS=OFF -DLIB_FUZZING_ENGINE=${LIB_FUZZING_ENGINE} -DRDK_BUILD_FUZZ_TARGETS=ON -DRDK_INSTALL_STATIC_LIBS=ON -DBoost_USE_STATIC_LIBS=ON ..
+cmake -DRDK_BUILD_PYTHON_WRAPPERS=OFF -DRDK_BUILD_FREETYPE_SUPPORT=OFF -DLIB_FUZZING_ENGINE=${LIB_FUZZING_ENGINE} -DRDK_BUILD_FUZZ_TARGETS=ON -DRDK_INSTALL_STATIC_LIBS=ON -DBoost_USE_STATIC_LIBS=ON ..
make -j$(nproc)
make install