diff --git a/fuzz/fuzz_config_init/CMakeLists.txt b/fuzz/fuzz_config_init/CMakeLists.txt index e5eb9e6e8a..72688babf1 100644 --- a/fuzz/fuzz_config_init/CMakeLists.txt +++ b/fuzz/fuzz_config_init/CMakeLists.txt @@ -25,4 +25,6 @@ target_include_directories( "$" "$" "$") + +set_target_properties(fuzz_config_init PROPERTIES LINKER_LANGUAGE CXX) target_link_libraries(fuzz_config_init CycloneDDS::ddsc $ENV{LIB_FUZZING_ENGINE}) diff --git a/fuzz/fuzz_handle_rtps_message/CMakeLists.txt b/fuzz/fuzz_handle_rtps_message/CMakeLists.txt index a2d6b5c0aa..2d1be489c2 100644 --- a/fuzz/fuzz_handle_rtps_message/CMakeLists.txt +++ b/fuzz/fuzz_handle_rtps_message/CMakeLists.txt @@ -25,4 +25,6 @@ target_include_directories( "$" "$" "$") + +set_target_properties(fuzz_handle_rtps_message PROPERTIES LINKER_LANGUAGE CXX) target_link_libraries(fuzz_handle_rtps_message CycloneDDS::ddsc $ENV{LIB_FUZZING_ENGINE}) diff --git a/fuzz/fuzz_sample_deser/CMakeLists.txt b/fuzz/fuzz_sample_deser/CMakeLists.txt index d2e0c21ea7..59bb6e0822 100644 --- a/fuzz/fuzz_sample_deser/CMakeLists.txt +++ b/fuzz/fuzz_sample_deser/CMakeLists.txt @@ -17,4 +17,5 @@ target_include_directories( "$") target_compile_options(fuzz_sample_deser PRIVATE -fsanitize=fuzzer,address -g) +set_target_properties(fuzz_sample_deser PROPERTIES LINKER_LANGUAGE CXX) target_link_libraries(fuzz_sample_deser fuzz_sample CycloneDDS::ddsc -fsanitize=fuzzer,address) diff --git a/fuzz/fuzz_type_object/CMakeLists.txt b/fuzz/fuzz_type_object/CMakeLists.txt index e85809a325..73ee8eb390 100644 --- a/fuzz/fuzz_type_object/CMakeLists.txt +++ b/fuzz/fuzz_type_object/CMakeLists.txt @@ -25,4 +25,6 @@ target_include_directories( "$" "$" "$") + +set_target_properties(fuzz_type_object PROPERTIES LINKER_LANGUAGE CXX) target_link_libraries(fuzz_type_object CycloneDDS::ddsc $ENV{LIB_FUZZING_ENGINE})