1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-29 11:21:22 +03:00

meson: fix resource file compilation on Windows

It needs to know about the correct include directories on its own.
This commit is contained in:
Eli Schwartz
2022-01-30 20:42:35 -05:00
parent c9072dd60a
commit 5b2c6c776a
2 changed files with 4 additions and 2 deletions

View File

@ -66,7 +66,8 @@ endif
if cc_id == compiler_msvc
if default_library_type != 'static'
zstd_programs_sources += [windows_mod.compile_resources(
join_paths(zstd_rootdir, 'build/VS2010/zstd/zstd.rc'))]
join_paths(zstd_rootdir, 'build/VS2010/zstd/zstd.rc'),
include_directories: libzstd_includes)]
endif
endif