Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ project(
)

cpp = meson.get_compiler('cpp')
args = cpp.get_supported_arguments(['/bigobj'])
# Hide two noisy MSVC warnings (C4251/C4275) about standard-library types used in
# our public classes. They're harmless because the whole library ships as one DLL.
args = cpp.get_supported_arguments(['/bigobj', '/wd4251', '/wd4275'])
add_project_arguments(args, language: 'cpp')

subdir('src')
Expand Down
Loading