• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright © 2017 Intel Corporation
2# SPDX-License-Identifier: MIT
3
4libi915drm = static_library(
5  'i915drm',
6  files(
7    'i915_drm_batchbuffer.c', 'i915_drm_buffer.c', 'i915_drm_fence.c',
8    'i915_drm_winsys.c'
9  ),
10  include_directories : [
11    inc_include, inc_src, inc_gallium, inc_gallium_aux, inc_gallium_drivers
12  ],
13  link_with : [libintel_common],
14  dependencies : [dep_libdrm, dep_libdrm_intel, idep_intel_dev_wa, idep_mesautil],
15)
16