• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright © 2017 Dylan Baker
2# SPDX-License-Identifier: MIT
3
4files_libsthgl = files(
5  'hgl_context.h',
6  'hgl.c',
7)
8
9libsthgl = static_library(
10  'sthgl',
11  files_libsthgl,
12  include_directories : [
13    inc_include, inc_util, inc_mesa, inc_mapi, inc_src,
14    inc_gallium, inc_gallium_aux
15  ],
16  gnu_symbol_visibility : 'hidden',
17)
18