mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-03 13:24:20 +01:00
f9b4046223
When building a game that has been ported to Linux using DXVK Native, these headers are necessary to provide the Direct3D and DXVK APIs. Signed-off-by: Simon McVittie <smcv@collabora.com>
20 lines
347 B
Meson
20 lines
347 B
Meson
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_sdl2.h',
|
|
'wsi/native_glfw.h',
|
|
subdir: 'dxvk/wsi',
|
|
)
|