# Copyright (C) 2018-2023 Intel Corporation # SPDX-License-Identifier: Apache-2.0 # cmake_policy(SET CMP0007 NEW) set(newContent " ") if(OV_PLUGIN_PROPERTIES) set(newContent "${newContent} ") foreach(props IN LISTS OV_PLUGIN_PROPERTIES) string(REPLACE ":" ";" props "${props}") list(GET props 0 key) list(GET props 1 value) set(newContent "${newContent} ") endforeach() set(newContent "${newContent} ") endif() set(newContent "${newContent} ") file(WRITE "${OV_CONFIG_OUTPUT_FILE}" "${newContent}")