1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-09 04:46:07 +01:00
dxvk/src/dxbc/meson.build
Philip Rebohle 1cbe6829eb
Revert "Add MSVC support (#123)"
This reverts commit c63d4361a0.
2018-03-05 14:32:28 +01:00

22 lines
516 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_options.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('.') ])