Files
clang-p2996/libc/fuzzing/__support/CMakeLists.txt
2024-05-02 15:36:10 -04:00

26 lines
383 B
CMake

add_libc_fuzzer(
uint_fuzz
SRCS
uint_fuzz.cpp
DEPENDS
libc.src.__support.big_int
)
add_libc_fuzzer(
hashtable_fuzz
SRCS
hashtable_fuzz.cpp
DEPENDS
libc.src.__support.HashTable.table
)
add_libc_fuzzer(
hashtable_opt_fuzz
SRCS
hashtable_fuzz.cpp
DEPENDS
libc.src.__support.HashTable.table
COMPILE_OPTIONS
-D__LIBC_EXPLICIT_SIMD_OPT
)