build.Compile.AdditionalOptions
|
This property sets or refers to the compile options for the active project regarding other additional options.
[Specification format]
build.Compile.AdditionalOptions = option
|
[Setting(s)]
|
|
option
|
Set the additional compile options as strings.
|
[Reference]
Additional compile options (strings)
[Detailed description]
- | This property sets or refers to the compile options for the active project regarding other additional options. |
- | The options set here are added at the end of the compile options group. |
[Example of use]
>>>build.Compile.AdditionalOptions = "-o3 -Xvolatile" ... Set multiple options
>>>print build.Compile.AdditionalOptions
-o3 -Xvolatile
>>>copt = build.Compile.AdditionalOptions + " -v" ... Refer the current setting and add an option
>>>build.Compile.AdditionalOptions = copt
>>>print build.Compile.AdditionalOptions
-o3 -Xvolatile -v
>>>
|