1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-04 16:24:29 +01:00
dxvk/src/util/meson.build

21 lines
416 B
Meson
Raw Normal View History

2017-10-10 23:32:13 +02:00
util_src = files([
'util_env.cpp',
2018-07-21 12:51:50 +02:00
'util_string.cpp',
2017-10-11 00:41:56 +02:00
'com/com_guid.cpp',
'com/com_private_data.cpp',
2017-10-11 00:41:56 +02:00
2017-10-10 23:32:13 +02:00
'log/log.cpp',
2017-10-10 23:44:06 +02:00
'log/log_debug.cpp',
'sha1/sha1.c',
'sha1/sha1_util.cpp',
2017-10-10 23:32:13 +02:00
])
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 ])