Skip to content

Commit

Permalink
Update windows.py
Browse files Browse the repository at this point in the history
Fix llvm-rc Matching Error
  • Loading branch information
CaptainNeil authored Jul 19, 2024
1 parent 7a306e1 commit 271caab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesonbuild/modules/windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def _find_resource_compiler(self, state: 'ModuleState') -> T.Tuple[ExternalProgr

for (arg, match, rc_type) in [
('/?', '^.*Microsoft.*Resource Compiler.*$', ResourceCompilerType.rc),
('/?', 'LLVM Resource Converter.*$', ResourceCompilerType.rc),
('/?', '^.*LLVM Resource Converter.*$', ResourceCompilerType.rc),
('--version', '^.*GNU windres.*$', ResourceCompilerType.windres),
('--version', '^.*Wine Resource Compiler.*$', ResourceCompilerType.wrc),
]:
Expand Down

0 comments on commit 271caab

Please sign in to comment.