EXTENSION_LIBS=$(find ./build/relassert/extension/ -name "*.a")
THIRD_PARTY_LIBS=$(find ./build/relassert/third_party/ -name "*.a")
$CXX $CXXFLAGS $LIB_FUZZING_ENGINE ./test/ossfuzz/parse_fuzz_test.cpp \
    -o $OUT/parse_fuzz_test -I./ -I./src/include \
    ./build/relassert/src/libduckdb_static.a \
    ${EXTENSION_LIBS} ${THIRD_PARTY_LIBS}
