JamPlus manual
C++/CLI Rules
IncludeModule hardsoftlink ;

List of Rules

Rules


rule HardLink PARENT : TARGET : SOURCE

Whenever PARENTS is built, link TARGET to SOURCE.

Parameters
PARENTSThe 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.
TARGETThe name of the link.
SOURCEThe 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
PARENTSThe 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.
TARGETThe name of the link.
SOURCEThe file or directory being linked to.
SoftLink myproject : appdata : /the/app/data/directory ;