mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-23 00:19:18 +00:00
Meta: Resolve pyright warnings in ladybird.py and helpers
This commit is contained in:
parent
564003b22a
commit
11f4b9c6ae
Notes:
github-actions[bot]
2025-08-07 10:58:33 +00:00
Author: https://github.com/trflynn89
Commit: 11f4b9c6ae
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5755
2 changed files with 7 additions and 2 deletions
|
@ -183,9 +183,12 @@ def configure_main(platform: Platform, preset: str, cc: str, cxx: str) -> Path:
|
|||
if build_preset_dir.joinpath("build.ninja").exists() or build_preset_dir.joinpath("ladybird.sln").exists():
|
||||
return build_preset_dir
|
||||
|
||||
switfc: Optional[str] = None
|
||||
validate_cmake_version()
|
||||
|
||||
if "Swift" in preset:
|
||||
(cc, cxx, swiftc) = pick_swift_compilers(platform, ladybird_source_dir)
|
||||
compilers = pick_swift_compilers(platform, ladybird_source_dir)
|
||||
(cc, cxx, swiftc) = tuple(map(str, compilers))
|
||||
else:
|
||||
(cc, cxx) = pick_host_compiler(platform, cc, cxx)
|
||||
|
||||
|
@ -201,7 +204,7 @@ def configure_main(platform: Platform, preset: str, cc: str, cxx: str) -> Path:
|
|||
f"-DCMAKE_CXX_COMPILER={cxx}",
|
||||
]
|
||||
|
||||
if "Swift" in preset:
|
||||
if switfc:
|
||||
config_args.append(f"-DCMAKE_Swift_COMPILER={swiftc}")
|
||||
|
||||
if platform.host_system == HostSystem.Linux and platform.host_architecture == HostArchitecture.AArch64:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue