check a flag to see if we should build the carbonlite target of Interface.mcp

This commit is contained in:
pinkerton%netscape.com 1999-04-07 03:11:40 +00:00
Родитель 1fea9f892b
Коммит 135cf7a0ed
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -479,7 +479,12 @@ sub BuildCommonProjects()
#//
if ( $main::CARBON )
{
BuildProject(":mozilla:cmd:macfe:projects:interfaceLib:Interface.mcp", "Carbon Interfaces");
if ( $main::CARBONLITE ) {
BuildProject(":mozilla:cmd:macfe:projects:interfaceLib:Interface.mcp", "Carbon Interfaces (Lite)");
}
else {
BuildProject(":mozilla:cmd:macfe:projects:interfaceLib:Interface.mcp", "Carbon Interfaces");
}
}
else
{