# # Copyright(c) 2021 ZettaScale Technology and others # # This program and the accompanying materials are made available under the # terms of the Eclipse Public License v. 2.0 which is available at # http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License # v. 1.0 which is available at # http://www.eclipse.org/org/documents/edl-v10.php. # # SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause # project(fuzz_handle_rtps_message LANGUAGES C) cmake_minimum_required(VERSION 3.5) if(NOT TARGET CycloneDDS::ddsc) # Find the CycloneDDS package. find_package(CycloneDDS REQUIRED) endif() add_executable(fuzz_handle_rtps_message fuzz_handle_rtps_message.c) target_include_directories( fuzz_handle_rtps_message PRIVATE "$" "$" "$" "$") target_link_libraries(fuzz_handle_rtps_message CycloneDDS::ddsc $ENV{LIB_FUZZING_ENGINE})