mirror of https://github.com/F-Stack/f-stack.git
15 lines
406 B
Meson
15 lines
406 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
if not is_linux
|
|
build = false
|
|
reason = 'only supported on linux'
|
|
endif
|
|
sources = files('rte_power.c', 'power_acpi_cpufreq.c',
|
|
'power_kvm_vm.c', 'guest_channel.c',
|
|
'rte_power_empty_poll.c',
|
|
'power_pstate_cpufreq.c')
|
|
headers = files('rte_power.h','rte_power_empty_poll.h',
|
|
'rte_power_guest_channel.h')
|
|
deps += ['timer']
|