mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-02-01 08:52:11 +01:00
a16c861358
This tries to be sophisticated and disables itself when it notices that the frame rate is going to be limited by presentation anyway.
30 lines
576 B
Meson
30 lines
576 B
Meson
util_src = files([
|
|
'util_env.cpp',
|
|
'util_string.cpp',
|
|
'util_fps_limiter.cpp',
|
|
'util_gdi.cpp',
|
|
'util_luid.cpp',
|
|
'util_matrix.cpp',
|
|
'util_monitor.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',
|
|
|
|
'sync/sync_recursive.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 ])
|