mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 17:16:58 +00:00
don't include the Iso targets in the workspace
svn path=/trunk/; revision=25399
This commit is contained in:
parent
022849644c
commit
d12b251a36
1 changed files with 22 additions and 17 deletions
|
@ -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" );
|
||||
|
|
Loading…
Reference in a new issue