#1
|
|||
|
|||
How do I append a Macro with more text?
I have a Macro called %PASS_LIST% that has a list of files that have passed during the build process and would like to keep appending file names to it. I can find examples of incrementing a macro variable but not appending text to a macro.
How do I do this? Ken |
#2
|
|||
|
|||
A couple ways:
1) Use a Set Macro step, with a value of %PASS_LIST%additional value to append 2) Use a Run Script step and the vbld_AddDelimValue system script function: http://www.visualbuild.com/Manual/?sysscriptloop.htm |
|
|