File: meson.build

package info (click to toggle)
dxvk 2.6%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 12,972 kB
  • sloc: cpp: 119,964; ansic: 76,058; sh: 518; python: 174; makefile: 45
file content (20 lines) | stat: -rw-r--r-- 370 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
install_subdir(
  'directx',
  install_dir: get_option('includedir') / 'dxvk',
  strip_directory: true,
  exclude_files: '.git'
)

install_subdir(
  'windows',
  install_dir: get_option('includedir') / 'dxvk',
  strip_directory: true,
)

install_headers(
  'wsi/native_wsi.h',
  'wsi/native_sdl3.h',
  'wsi/native_sdl2.h',
  'wsi/native_glfw.h',
  subdir: 'dxvk/wsi',
)