mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
- comment out using xsl style sheet until its ready
svn path=/trunk/; revision=25457
This commit is contained in:
parent
e112816fe2
commit
6a1a30f13b
1 changed files with 4 additions and 2 deletions
|
@ -150,8 +150,8 @@ DepMapBackend::_generate_depmap ( FILE* OUT )
|
|||
}
|
||||
|
||||
fprintf ( m_DepMapFile, "<?xml version=\"1.0\" encoding=\"iso-8859-1\" ?>\r\n" );
|
||||
fprintf ( m_DepMapFile, "<?xml-stylesheet type=\"text/xsl\" href=\"depmap.xsl\"?>\r\n" );
|
||||
fprintf ( m_DepMapFile, "<components>" );
|
||||
//fprintf ( m_DepMapFile, "<?xml-stylesheet type=\"text/xsl\" href=\"depmap.xsl\"?>\r\n" );
|
||||
fprintf ( m_DepMapFile, "<components>\r\n" );
|
||||
|
||||
for ( size_t i = 0; i < ProjectNode.modules.size(); i++ )
|
||||
{
|
||||
|
@ -162,6 +162,8 @@ DepMapBackend::_generate_depmap ( FILE* OUT )
|
|||
{
|
||||
module_data * data = it->second;
|
||||
|
||||
|
||||
|
||||
fprintf ( m_DepMapFile, "<component name=\"%s\" base=\"%s\" ref_count=\"%u\" library_count=\"%u\">\r\n", module.name.c_str(), module.GetBasePath ().c_str (), data->references.size (), data->libraries.size () );
|
||||
|
||||
if ( data->references.size () )
|
||||
|
|
Loading…
Reference in a new issue