mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
9 lines
242 B
CMake
9 lines
242 B
CMake
add_executable(FuzzJs FuzzJs.cpp)
|
|
target_compile_options(FuzzJs
|
|
PRIVATE $<$<C_COMPILER_ID:Clang>:-g -O1 -fsanitize=fuzzer>
|
|
)
|
|
|
|
target_link_libraries(FuzzJs
|
|
PUBLIC Lagom
|
|
PRIVATE $<$<C_COMPILER_ID:Clang>:-fsanitize=fuzzer>
|
|
)
|