Main Content

getPostbuildTool

クラス: coder.make.ToolchainInfo
名前空間: coder.make

ポストビルド BuildTool オブジェクトの取得

構文

bldtl_handle = h.getPostbuildTool(bldtl_name)

説明

bldtl_handle = h.getPostbuildTool(bldtl_name) は名前付き BuildTool オブジェクトを PostbuildTool から取得し、このオブジェクトにハンドルを返します。

入力引数

すべて展開する

coder.make.ToolchainInfo オブジェクト。h のようにオブジェクト ハンドルを使用して指定します。h を作成するには、MATLAB® コマンド ウィンドウで「h = coder.make.ToolchainInfo」と入力します。

ビルド ツール名。文字ベクトルまたは string スカラーとして指定します。

データ型: char | string

出力引数

すべて展開する

coder.make.BuildTool オブジェクト ハンドル。

h.getPostbuildTool('Download')
ans = 

##############################################
# Build Tool: Download
##############################################

Language              : ''
OptionsRegistry       : {'Download','DOWNLOAD_FLAGS'}
InputFileExtensions   : {}
OutputFileExtensions  : {}
DerivedFileExtensions : {}
SupportedOutputs      : {coder.make.enum.BuildOutput.EXECUTABLE}
CommandPattern        : '|>TOOL<| |>TOOL_OPTIONS<|'

# ---------
# Command
# ---------
DOWNLOAD  = 
DOWNLOAD_PATH  = 

# ------------
# Directives
# ------------
(none)

# -----------------
# File Extensions
# -----------------
(none)

バージョン履歴

R2013a で導入