mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-22 18:59:59 +08:00
24 lines
492 B
CMake
24 lines
492 B
CMake
set(CMAKE_C_COMPILER clang)
|
|
set(CMAKE_CXX_COMPILER clang++)
|
|
|
|
function(fuzz name)
|
|
add_executable(${name}
|
|
src/ftxui/component/${name}.cpp
|
|
)
|
|
target_include_directories(${name}
|
|
PRIVATE src
|
|
)
|
|
target_link_libraries(${name}
|
|
PRIVATE component
|
|
)
|
|
target_compile_options(${name}
|
|
PRIVATE -fsanitize=fuzzer,address
|
|
)
|
|
target_link_libraries(${name}
|
|
PRIVATE -fsanitize=fuzzer,address
|
|
)
|
|
endfunction(fuzz)
|
|
|
|
fuzz(terminal_input_parser_test_fuzzer)
|
|
fuzz(component_fuzzer)
|