mirror of
https://github.com/boostorg/build.git
synced 2026-02-13 12:22:17 +00:00
* new/project.jam (lookup) Don't support project location in front of "@". (lookup-with-load): Remove. (find): New rule. (find-target): move to... * new/target.jam (find): Here. And simplify. [SVN r18667]
18 lines
392 B
Plaintext
18 lines
392 B
Plaintext
import project ;
|
|
import targets ;
|
|
import assert ;
|
|
|
|
project.load project-test1 ;
|
|
import project-roots ;
|
|
|
|
project-roots.print ;
|
|
|
|
assert.result Jamfile<project-test1/dir2> : project.lookup @/cool-library : "." ;
|
|
assert.result Jamfile<project-test1/dir> : project.lookup @dir : "project-test1" ;
|
|
assert.result Jamfile<project-test1> : project.lookup @ : "project-test1" ;
|
|
|
|
|
|
NOTFILE all ;
|
|
|
|
|