aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/windows.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-05-03 10:26:54 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-05-13 11:22:31 -0700
commitde011e031c83db8f88958573815feaef3bce0d1d (patch)
treed2abfdfa3d880bd6fe2c435604a9bb7606d29a60 /mesonbuild/modules/windows.py
parentb9353599780c91ab9461ea2d424ce279ef44644e (diff)
downloadmeson-de011e031c83db8f88958573815feaef3bce0d1d.zip
meson-de011e031c83db8f88958573815feaef3bce0d1d.tar.gz
meson-de011e031c83db8f88958573815feaef3bce0d1d.tar.bz2
modules/windows: ICL uses rc, not windres
Diffstat (limited to 'mesonbuild/modules/windows.py')
-rw-r--r--mesonbuild/modules/windows.py2
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)