mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-14 09:23:53 +01:00
858913ec0c
Removed the old decoder and the old shader compiler and added documentation to the new structures.
21 lines
494 B
Meson
21 lines
494 B
Meson
dxbc_src = files([
|
|
'dxbc_chunk_isgn.cpp',
|
|
'dxbc_chunk_shex.cpp',
|
|
'dxbc_common.cpp',
|
|
'dxbc_compiler.cpp',
|
|
'dxbc_defs.cpp',
|
|
'dxbc_decoder.cpp',
|
|
'dxbc_header.cpp',
|
|
'dxbc_module.cpp',
|
|
'dxbc_names.cpp',
|
|
'dxbc_reader.cpp',
|
|
'dxbc_util.cpp',
|
|
])
|
|
|
|
dxbc_lib = static_library('dxbc', dxbc_src,
|
|
include_directories : [ dxvk_include_path ])
|
|
|
|
dxbc_dep = declare_dependency(
|
|
link_with : [ dxbc_lib ],
|
|
include_directories : [ dxvk_include_path, include_directories('.') ])
|