don't include the Iso targets in the workspace

svn path=/trunk/; revision=25399
This commit is contained in:
Christoph von Wittich 2007-01-09 12:28:30 +00:00
parent 022849644c
commit d12b251a36

View file

@ -303,6 +303,11 @@ CBBackend::_generate_workspace ( FILE* OUT )
{
Module& module = *ProjectNode.modules[i];
if ((module.type != Iso) &&
(module.type != LiveIso) &&
(module.type != IsoRegTest) &&
(module.type != LiveIsoRegTest))
{
std::string Cbp_file = CbpFileName ( module );
fprintf ( OUT, "\t\t<Project filename=\"%s\">\r\n", Cbp_file.c_str());
@ -319,7 +324,7 @@ CBBackend::_generate_workspace ( FILE* OUT )
fprintf ( OUT, "\t\t\t<Depends filename=\"%s\\%s_auto.cbp\" />\r\n", libs[j]->importedModule->GetBasePath().c_str(), libs[j]->name.c_str() );
}
fprintf ( OUT, "\t\t</Project>\r\n" );
}
}
fprintf ( OUT, "\t</Workspace>\r\n" );
fprintf ( OUT, "</CodeBlocks_workspace_file>\r\n" );