mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-14 18:23:52 +01:00
15 lines
403 B
Meson
15 lines
403 B
Meson
|
d3d11_src = [
|
||
|
'd3d11_context.cpp',
|
||
|
'd3d11_device.cpp',
|
||
|
'd3d11_main.cpp',
|
||
|
]
|
||
|
|
||
|
d3d11_dll = shared_library('d3d11', d3d11_src,
|
||
|
link_with : [ util_lib ],
|
||
|
dependencies : [ dxvk_dep, dxgi_dep ],
|
||
|
include_directories : dxvk_include_path)
|
||
|
|
||
|
d3d11_dep = declare_dependency(
|
||
|
link_with : [ d3d11_dll ],
|
||
|
include_directories : [ dxvk_include_path, include_directories('.') ])
|