このページの内容は最新ではありません。最新版の英語を参照するには、ここをクリックします。
target.BuildTool クラス
名前空間: target
Description
Use a target.BuildTool
object to describe a build tool. For example, a compiler, linker, or archiver.
To create a target.BuildTool
object, use the target.create
function. Create the object in a single step.
buildToolObject = target.create('BuildTool', ... nameOfBuildToolType, ... buildToolCommandString, ... propertyXName, propertyXValue, ... propertyYName, propertyYValue, ... propertyZName, propertyZValue)
nameOfBuildToolType
is the name of the target.BuildToolType
object that you want to specify for the BuildToolType
property of buildToolObject
. For example 'C Compiler'
.
buildToolCommandString
is the build tool command, which includes required arguments and flags. For example 'gcc'
.
プロパティ
Methods
例
バージョン履歴
R2023a で導入