1
0
mirror of https://github.com/EduApps-CDG/OpenDX synced 2024-12-30 09:45:37 +01:00
OpenDX/src/util/meson.build
Philip Rebohle 1cbe6829eb
Revert "Add MSVC support (#123)"
This reverts commit c63d4361a0ecc9d0d660742237b0e0ed3036c87e.
2018-03-05 14:32:28 +01:00

19 lines
344 B
Meson

util_src = files([
'util_env.cpp',
'com/com_guid.cpp',
'com/com_private_data.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 ])
util_dep = declare_dependency(
link_with : [ util_lib ])