We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 058200d commit d818694Copy full SHA for d818694
meson.build
@@ -39,7 +39,8 @@ project_source_root = meson.current_source_dir()
39
project_build_root = meson.current_build_dir()
40
41
cpp_compiler = meson.get_compiler('cpp')
42
-is_msvc = cpp_compiler.get_id() == 'msvc'
+cpp_compiler_id = cpp_compiler.get_id()
43
+is_msvc = cpp_compiler_id == 'msvc' or cpp_compiler_id.endswith('-cl')
44
python3 = find_program('python3', version: '>=3.7')
45
46
# MSVC: We currently do not support shared and static builds at the,
0 commit comments