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

18 lines
324 B
Plaintext

use-project /lib2/helper : ../lib2/helper ;
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 ;