Skip to content

Commit

Permalink
Added clang-cl to autodetection
Browse files Browse the repository at this point in the history
  • Loading branch information
SteelPh0enix committed Feb 9, 2024
1 parent a83b5d8 commit 93058dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cpputest_platform = get_option('cpputest_platform')
if cpputest_platform != 'none'
if cpputest_platform == 'autodetect'
compiler_id = meson.get_compiler('cpp').get_id()
if compiler_id == 'clang' or compiler_id == 'gcc'
if compiler_id == 'gcc' or compiler_id == 'clang' or compiler_id == 'clang-cl'
cpputest_platform = 'Gcc'
elif compiler_id == 'msvc'
cpputest_platform = 'VisualCpp'
Expand Down

0 comments on commit 93058dc

Please sign in to comment.