Incredibuild Support has moved! Come join us at:
AllowRemoteIf and DenyRemoteIf usage illustration
Posted by Yoni Davidson, Last modified by Yoni Davidson on 08 January 2018 03:58 PM
|
|
The AllowRemoteIf and DenyRemoteIf XML Profile parameters allow you to control the way tasks are distributed.
Therefore, the parameter of these should be some unique part of the task command.
AllowRemoteIf Example: <?xml version="1.0" encoding="UTF-8" standalone="no" ?> <Profile FormatVersion="1"> <Tools> <Tool Filename="MyTool" AllowRemoteIf="-lpthread" /> </Tools> </Profile> In the above sample, the "MyTool" file will be distributed if the parameter contains the "-lpthread" flag DenyRemoteIf Example: <?xml version="1.0" encoding="UTF-8" standalone="no" ?> <Profile FormatVersion="1"> <Tools> <Tool Filename="MyTool" DenyRemoteIf="-lpthread" /> </Tools> </Profile> In the above sample, the "MyTool" file will not be distributed if the parameter contains the "-lpthread" flag. | |
|
Comments (0)