[+] fix cross_file usage

This commit is contained in:
Siarhei Siniak 2025-06-09 17:58:09 +03:00
parent fc10601632
commit 62a21cc6a0
3 changed files with 7 additions and 4 deletions

@ -5,7 +5,7 @@ project(
).stdout().strip('\n'),
# 'online.fxreader.uv',
# ['c', 'cpp'],
version: '0.1.5.17+27.19',
version: '0.1.5.17+27.20',
# default_options: [
# 'cpp_std=c++23',
# # 'prefer_static=true',

@ -674,14 +674,14 @@ class CLI(abc.ABC):
extra_args: list[str] = []
if len(self.third_party_roots(project_name)) > 0:
extra_args.append('-Dthird_party_roots=%s' % json.dumps([str(o.absolute()) for o in self.third_party_roots(project_name)]))
extra_args = self._cross_file(
extra_args=extra_args,
pyproject_tool=pyproject_tool,
)
if len(self.third_party_roots(project_name)) > 0:
extra_args.append('-Dthird_party_roots=%s' % json.dumps([str(o.absolute()) for o in self.third_party_roots(project_name)]))
cmd = [
# shutil_which(
# 'meson',

Binary file not shown.