2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-17 13:42:14 +00:00
Files
build/v2/test/project-test3/lib3/project-root.jam
2002-07-08 11:35:17 +00:00

16 lines
279 B
Plaintext

import property ;
rule mfc-compile ( target : sources * : property-set * )
{
PROPERTIES on $(target) = [ property.as-path $(property-set) ] ;
}
actions mfc-compile
{
echo $(PROPERTIES) > $(<)
echo $(>) >> $(<)
}
IMPORT $(__name__) : mfc-compile : : mfc-compile ;