mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-22 02:34:21 +08:00
22 lines
606 B
CMake
22 lines
606 B
CMake
if (NOT FTXUI_BUILD_TESTS_FUZZER)
|
|
return()
|
|
endif()
|
|
|
|
set(CMAKE_C_COMPILER clang)
|
|
set(CMAKE_CXX_COMPILER clang++)
|
|
|
|
function(fuzz source)
|
|
set(name "ftxui-${source}")
|
|
add_executable(${name}
|
|
src/ftxui/component/${source}.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)
|
|
target_compile_features(${name} PRIVATE cxx_std_17)
|
|
endfunction(fuzz)
|
|
|
|
fuzz(terminal_input_parser_test_fuzzer)
|
|
fuzz(component_fuzzer)
|