Warning, /multimedia/kdenlive/fuzzer/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 # SPDX-License-Identifier: BSD-2-Clause 0002 # SPDX-FileCopyrightText: Vincent Pinon <vincent.pinon@asygn.com> 0003 0004 include_directories(${MLT_INCLUDE_DIR}) 0005 kde_enable_exceptions() 0006 add_executable(fuzz main_fuzzer.cpp fuzzing.cpp) 0007 add_executable(fuzz_reproduce main_reproducer.cpp fuzzing.cpp) 0008 target_link_libraries(fuzz kdenliveLib -fsanitize=fuzzer) 0009 target_link_libraries(fuzz_reproduce kdenliveLib) 0010 set_property(TARGET fuzz PROPERTY CXX_STANDARD 14) 0011 set_property(TARGET fuzz_reproduce PROPERTY CXX_STANDARD 14)