2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 13:22:11 +00:00
Files
build/test/project-test3/lib3/Jamfile
Vladimir Prus 2f1119297f Remove support for using project-root.jam in place of Jamfile.
* new/project-roots.jam
  (project-root-context.project): Remove.

* new/project.jam
  (find): Simplify.
  (find-jamfile): Optimize.


[SVN r20432]
2003-10-21 06:12:49 +00:00

22 lines
446 B
Plaintext

# This project-root.jam also serves the role of Jamfile
project lib3 ;
use-project /lib2/helper : ../lib2/helper ;
import property ;
rule mfc-compile ( target : sources * : property-set * )
{
PROPERTIES on $(target) = [
property.as-path [ property.remove incidental : $(property-set) ] ] ;
}
actions mfc-compile
{
echo $(PROPERTIES) > $(<)
echo $(>) >> $(<)
}
make f.obj : f.cpp /lib2/helper//e.obj : mfc-compile ;