RawSpeed: fix build. (#997)

During introduction of more fuzz targets, i did some CMake cleanup,
namely adding of helper library. And unfortunately i did not think
about the LIB_FUZZING_ENGINE env variable, thus the oss-fuzz build
has failed.

So some more cleanup was needed
(darktable-org/rawspeed@986d605935),
and as the consequences, this small build.sh change is needed too.

I did check locally, this does fix the build.
Please merge :)
This commit is contained in:
Roman Lebedev 2017-11-18 18:21:59 +03:00 committed by Abhishek Arya
parent 6b302b9e61
commit 430a173d1a
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ cmake \
-DWITH_PUGIXML=OFF -DUSE_XMLLINT=OFF -DWITH_JPEG=OFF -DWITH_ZLIB=OFF \
-DBUILD_TESTING=OFF -DBUILD_TOOLS=OFF -DBUILD_BENCHMARKING=OFF \
-DCMAKE_BUILD_TYPE=FUZZ -DBUILD_FUZZERS=ON \
-DLIBFUZZER_ARCHIVE:FILEPATH="$LIB_FUZZING_ENGINE" \
-DLIB_FUZZING_ENGINE:FILEPATH="$LIB_FUZZING_ENGINE" \
-DCMAKE_INSTALL_PREFIX:PATH="$OUT" -DCMAKE_INSTALL_BINDIR:PATH="$OUT" \
"$SRC/librawspeed/"