1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-03 04:24:11 +01:00
dxvk/src/util/meson.build
Philip Rebohle fb9b520f60
[util] Move getAppConfig and getUserConfig to Config class
Fixes linker errors with winelib builds.
2018-08-07 16:59:49 +02:00

23 lines
440 B
Meson

util_src = files([
'util_env.cpp',
'util_string.cpp',
'com/com_guid.cpp',
'com/com_private_data.cpp',
'config/config.cpp',
'log/log.cpp',
'log/log_debug.cpp',
'sha1/sha1.c',
'sha1/sha1_util.cpp',
])
util_lib = static_library('util', util_src,
include_directories : [ dxvk_include_path ],
override_options : ['cpp_std='+dxvk_cpp_std])
util_dep = declare_dependency(
link_with : [ util_lib ])