26 lines
383 B
CMake
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
|
|
)
|