mirror of
https://github.com/jmcnamara/libxlsxwriter.git
synced 2026-05-15 14:15:54 -06:00
11 lines
334 B
Bash
Executable file
11 lines
334 B
Bash
Executable file
cd $SRC/libxlsxwriter
|
|
|
|
printenv
|
|
|
|
mkdir -p build
|
|
cmake -S . -B build -DBUILD_FUZZERS=ON -DBUILD_TESTS=ON && cmake --build build --target install
|
|
|
|
# Build the corpus using the existing xlsx files in the source
|
|
mkdir -p corpus
|
|
find $SRC/libxlsxwriter -name "*.xlsx" -exec cp {} corpus \;
|
|
zip -q $OUT/xlsx_fuzzer_seed_corpus.zip corpus/*
|