本文整理汇总了Python中distutils.command.install.install.finalize_options方法的典型用法代码示例。如果您正苦于以下问题:Python install.finalize_options方法的具体用法?Python install.finalize_options怎么用?Python install.finalize_options使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类distutils.command.install.install
的用法示例。
在下文中一共展示了install.finalize_options方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: finalize_options
# 需要导入模块: from distutils.command.install import install [as 别名]
# 或者: from distutils.command.install.install import finalize_options [as 别名]
def finalize_options(self):
_build_ext.finalize_options(self)
# The argument parsing will result in self.define being a string, but
# it has to be a list of 2-tuples.
# Multiple symbols can be separated with semi-colons.
self.define = _process_define(self)
cmake_opts.extend(self.define)
if self.symengine_dir:
cmake_opts.extend([('SymEngine_DIR', self.symengine_dir)])
if self.generator:
cmake_generator[0] = self.generator
cmake_build_type[0] = self.build_type
示例2: finalize_options
# 需要导入模块: from distutils.command.install import install [as 别名]
# 或者: from distutils.command.install.install import finalize_options [as 别名]
def finalize_options(self):
"""Finalize options"""
_install.finalize_options(self)
示例3: finalize_options
# 需要导入模块: from distutils.command.install import install [as 别名]
# 或者: from distutils.command.install.install import finalize_options [as 别名]
def finalize_options(self):
_install.finalize_options(self)
示例4: finalize_options
# 需要导入模块: from distutils.command.install import install [as 别名]
# 或者: from distutils.command.install.install import finalize_options [as 别名]
def finalize_options(self):
_install.finalize_options(self)
if self.root:
self.single_version_externally_managed = True
elif self.single_version_externally_managed:
if not self.root and not self.record:
raise DistutilsArgError(
"You must specify --record or --root when building system"
" packages"
)
示例5: finalize_options
# 需要导入模块: from distutils.command.install import install [as 别名]
# 或者: from distutils.command.install.install import finalize_options [as 别名]
def finalize_options(self):
build.finalize_options(self)
# The build isn't platform-independent
if self.build_lib == self.build_purelib:
self.build_lib = self.build_platlib