C++/CLI Rules

    IncludeModule hardsoftlink ;

List of Rules

Rules


rule HardLink PARENT : TARGET : SOURCE

Whenever PARENTS is built, link TARGET to SOURCE.

Parameters:
PARENTS The parent target to attach the file link dependency to. When a clean pass is run on any of the PARENTS, the link will be removed.
TARGET The name of the link.
SOURCE The file or directory being linked to.
        HardLink myproject : appdata : /the/app/data/directory ;

rule SoftLink PARENT : TARGET : SOURCE

Whenever PARENTS is built, link TARGET to SOURCE.

Parameters:
PARENTS The parent target to attach the file link dependency to. When a clean pass is run on any of the PARENTS, the link will be removed.
TARGET The name of the link.
SOURCE The file or directory being linked to.
        SoftLink myproject : appdata : /the/app/data/directory ;