[+] fix meson third_party_roots option
This commit is contained in:
parent
a7d68110c8
commit
bab76643f2
@ -5,7 +5,7 @@ project(
|
||||
).stdout().strip('\n'),
|
||||
# 'online.fxreader.uv',
|
||||
# ['c', 'cpp'],
|
||||
version: '0.1.5.17+27.8',
|
||||
version: '0.1.5.17+27.9',
|
||||
# default_options: [
|
||||
# 'cpp_std=c++23',
|
||||
# # 'prefer_static=true',
|
||||
|
@ -1,5 +1,6 @@
|
||||
import dataclasses
|
||||
import io
|
||||
import json
|
||||
import importlib
|
||||
import configparser
|
||||
import glob
|
||||
@ -369,7 +370,7 @@ class CLI(abc.ABC):
|
||||
shutil.rmtree(pyproject_build_dir)
|
||||
|
||||
if len(self.third_party_roots(project_name)) > 0:
|
||||
extra_args.extend(['-Csetup-args=%s' % ('-Dthird_party_roots=%s' % str(o.absolute())) for o in self.third_party_roots(project_name)])
|
||||
extra_args.append('-Csetup-args=%s' % ('-Dthird_party_roots=%s' % json.dumps([str(o.absolute()) for o in self.third_party_roots(project_name)])))
|
||||
|
||||
cmd = [
|
||||
sys.executable,
|
||||
@ -645,7 +646,7 @@ class CLI(abc.ABC):
|
||||
extra_args: list[str] = []
|
||||
|
||||
if len(self.third_party_roots(project_name)) > 0:
|
||||
extra_args.extend(['-Dthird_party_roots=%s' % str(o.absolute()) for o in self.third_party_roots(project_name)])
|
||||
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,
|
||||
|
BIN
releases/whl/online_fxreader_pr34-0.1.5.17+27.9-py3-none-any.whl
(Stored with Git LFS)
Normal file
BIN
releases/whl/online_fxreader_pr34-0.1.5.17+27.9-py3-none-any.whl
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user