Path: blob/21.2-virgl/src/panfrost/ds/meson.build
4560 views
# Copyright © 2020 Collabora, Ltd.1# Author: Antonio Caggiano <[email protected]>2# Author: Robert Beckett <[email protected]>3#4# SPDX-License-Identifier: MIT56pps_panfrost_sources = [7'pan_pps_perf.cc',8'pan_pps_driver.cc'9]1011pps_panfrost_includes = [inc_include, inc_src, inc_tool]1213pps_panfrost_lib = static_library(14'pps-panfrost',15sources: pps_panfrost_sources,16include_directories: pps_panfrost_includes,17dependencies: [dep_libdrm, dep_perfetto, libpanfrost_dep, dep_panfrost_perf],18cpp_args: '-std=c++17'19)2021compile_args_pps_panfrost = ['-DPPS_PANFROST']2223pps_panfrost_dep = declare_dependency(24link_with: pps_panfrost_lib,25include_directories: pps_panfrost_includes,26compile_args: compile_args_pps_panfrost27)2829pps_datasources += pps_panfrost_dep30with_datasources += 'panfrost'313233