Commit a9f1bed9 authored by Max Kellermann's avatar Max Kellermann

build/python/cmake: add cast to fix mypy warning

parent eb23788f
import os import os
import re import re
import subprocess import subprocess
from typing import Optional, Sequence, TextIO, Union from typing import cast, Optional, Sequence, TextIO, Union
from collections.abc import Mapping from collections.abc import Mapping
from build.project import Project from build.project import Project
...@@ -59,7 +59,7 @@ def configure(toolchain: AnyToolchain, src: str, build: str, args: list[str]=[], ...@@ -59,7 +59,7 @@ def configure(toolchain: AnyToolchain, src: str, build: str, args: list[str]=[],
cross_args = [] cross_args = []
if toolchain.is_windows: if toolchain.is_windows:
cross_args.append('-DCMAKE_RC_COMPILER=' + toolchain.windres) cross_args.append('-DCMAKE_RC_COMPILER=' + cast(str, toolchain.windres))
# Several targets need a sysroot to prevent pkg-config from # Several targets need a sysroot to prevent pkg-config from
# looking for libraries on the build host (TODO: fix this # looking for libraries on the build host (TODO: fix this
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment