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
This commit is contained in:
Greg Landrum 2020-07-17 17:25:16 +02:00 committed by GitHub
parent d70f793353
commit 4fb930fa52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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