diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-05-03 10:26:54 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-05-13 11:22:31 -0700 |
commit | de011e031c83db8f88958573815feaef3bce0d1d (patch) | |
tree | d2abfdfa3d880bd6fe2c435604a9bb7606d29a60 /mesonbuild/modules | |
parent | b9353599780c91ab9461ea2d424ce279ef44644e (diff) | |
download | meson-de011e031c83db8f88958573815feaef3bce0d1d.zip meson-de011e031c83db8f88958573815feaef3bce0d1d.tar.gz meson-de011e031c83db8f88958573815feaef3bce0d1d.tar.bz2 |
modules/windows: ICL uses rc, not windres
Diffstat (limited to 'mesonbuild/modules')
-rw-r--r-- | mesonbuild/modules/windows.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/windows.py b/mesonbuild/modules/windows.py index 87a83fe..e2fd9a8 100644 --- a/mesonbuild/modules/windows.py +++ b/mesonbuild/modules/windows.py @@ -51,7 +51,7 @@ class WindowsModule(ExtensionModule): if not rescomp or not rescomp.found(): comp = self.detect_compiler(state.compilers) - if comp.id == 'msvc' or comp.id == 'clang-cl': + if comp.id in {'msvc', 'clang-cl', 'intel-cl'}: rescomp = ExternalProgram('rc', silent=True) else: rescomp = ExternalProgram('windres', silent=True) |