/
phprus
/
github_dpdk
Обзор
Документация
Войти
/
phprus
/
github_dpdk
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
lib/power/meson.build
36 строк
727 B
David Marchand
power: separate public and driver headers
02 окт 2025, 15:12
02 окт 2025, 15:12
76393b9
Код
Авторство
О чём код?
# SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation if is_windows build = false reason = 'not supported on Windows' subdir_done() endif if not is_linux build = false reason = 'only supported on Linux' endif cflags += no_wvla_cflag sources = files( 'power_common.c', 'rte_power_cpufreq.c', 'rte_power_pmd_mgmt.c', 'rte_power_qos.c', 'rte_power_uncore.c', ) headers = files( 'rte_power_cpufreq.h', 'rte_power_pmd_mgmt.h', 'rte_power_qos.h', 'rte_power_uncore.h', ) driver_sdk_headers = files( 'power_common.h', 'power_cpufreq.h', 'power_uncore_ops.h', ) deps += ['timer', 'ethdev']