2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

Implement project-config.jam loading.

[SVN r52170]
This commit is contained in:
Vladimir Prus
2009-04-04 18:54:12 +00:00
parent 8c387334d8
commit d1c45ccc30

View File

@@ -388,6 +388,15 @@ local rule load-configuration-files
ECHO "notice: User configuration file loading explicitly disabled." ;
}
}
initialize-config-module project-config ;
if [ project.find "." : "." ]
{
local project-module = [ project.load "." ] ;
local root = [ project.attribute $(project-module) project-root ] ;
load-config project-config : project-config.jam : $(root) ;
}
}