1# 2# Arm SCP/MCP Software 3# Copyright (c) 2023, Arm Limited and Contributors. All rights reserved. 4# 5# SPDX-License-Identifier: BSD-3-Clause 6# 7 8cmake_dependent_option( 9 SCP_ENABLE_SCMI_PERF_FAST_CHANNELS "Enable the SCMI-perf Fast Channels ?" 10 "${SCP_ENABLE_SCMI_PERF_FAST_CHANNELS_INIT}" 11 "DEFINED SCP_ENABLE_SCMI_PERF_FAST_CHANNELS_INIT" 12 "${SCP_ENABLE_SCMI_PERF_FAST_CHANNELS}") 13 14cmake_dependent_option( 15 SCP_ENABLE_PLUGIN_HANDLER "Enable the Performance Plugins-Handler ?" 16 "${SCP_ENABLE_PLUGIN_HANDLER_INIT}" "DEFINED SCP_ENABLE_PLUGIN_HANDLER_INIT" 17 "${SCP_ENABLE_PLUGIN_HANDLER}") 18