mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-17 18:12:04 +01:00
set attributes readonly when its owner element is readonly
This commit is contained in:
parent
53184edc79
commit
c29604d553
11 changed files with 75 additions and 51 deletions
|
@ -190,8 +190,12 @@ class NodeImpl : virtual public DOM::Node_impl<stringT, string_adaptorT>
|
|||
{
|
||||
// Should be readOnly_ = readOnly; ?
|
||||
readOnly_ = true;
|
||||
for(NodeImplT*child = getFirst(); child != 0; child = child->getNext())
|
||||
for(NodeImplT* child = getFirst(); child != 0; child = child->getNext())
|
||||
child->setReadOnly(readOnly_);
|
||||
DOMNamedNodeMap_implT* attrs = getAttributes();
|
||||
if(attrs)
|
||||
for(unsigned int i = 0; i < attrs->getLength(); ++i)
|
||||
(dynamic_cast<NodeImplT*>(attrs->item(i)))->setReadOnly(readOnly_);
|
||||
} // setReadOnly
|
||||
|
||||
void throwIfReadOnly() const
|
||||
|
|
|
@ -74,6 +74,7 @@ void ewim_endDoctypeDecl(void* userData);
|
|||
void ewim_startCdataSection(void* userData);
|
||||
void ewim_endCdataSection(void* userData);
|
||||
void ewim_commentHandler(void* userData, const XML_Char* data);
|
||||
void ewim_skippedEntityHandler(void* userData, const XML_Char* entityName, int is_parameter_entity);
|
||||
int ewim_externalEntityRefHandler(XML_Parser parser,
|
||||
const XML_Char* context,
|
||||
const XML_Char* base,
|
||||
|
@ -119,6 +120,7 @@ private:
|
|||
virtual void startCdataSection() = 0;
|
||||
virtual void endCdataSection() = 0;
|
||||
virtual void commentHandler(const XML_Char* data) = 0;
|
||||
virtual void skippedEntity(const XML_Char* entityName) = 0;
|
||||
virtual int externalEntityRefHandler(XML_Parser parser,
|
||||
const XML_Char* context,
|
||||
const XML_Char* base,
|
||||
|
@ -139,6 +141,7 @@ private:
|
|||
friend void ewim_startCdataSection(void*);
|
||||
friend void ewim_endCdataSection(void*);
|
||||
friend void ewim_commentHandler(void*, const XML_Char*);
|
||||
friend void ewim_skippedEntityHandler(void*, const XML_Char*, int);
|
||||
friend int ewim_externalEntityRefHandler(XML_Parser, const XML_Char*, const XML_Char*, const XML_Char*, const XML_Char*);
|
||||
|
||||
}; // class expat2base
|
||||
|
@ -309,6 +312,7 @@ class expat_wrapper :
|
|||
virtual void startCdataSection();
|
||||
virtual void endCdataSection();
|
||||
virtual void commentHandler(const XML_Char* data);
|
||||
virtual void skippedEntity(const XML_Char* entityName);
|
||||
virtual int externalEntityRefHandler(XML_Parser parser,
|
||||
const XML_Char* context,
|
||||
const XML_Char* base,
|
||||
|
@ -387,6 +391,7 @@ void expat_wrapper<string_type, T0, T1>::setCallbacks()
|
|||
XML_SetDoctypeDeclHandler(parser_, expat_wrapper_impl_mumbojumbo::ewim_startDoctypeDecl, expat_wrapper_impl_mumbojumbo::ewim_endDoctypeDecl);
|
||||
XML_SetCdataSectionHandler(parser_, expat_wrapper_impl_mumbojumbo::ewim_startCdataSection, expat_wrapper_impl_mumbojumbo::ewim_endCdataSection);
|
||||
XML_SetCommentHandler(parser_, expat_wrapper_impl_mumbojumbo::ewim_commentHandler);
|
||||
XML_SetSkippedEntityHandler(parser_, expat_wrapper_impl_mumbojumbo::ewim_skippedEntityHandler);
|
||||
XML_SetExternalEntityRefHandler(parser_, expat_wrapper_impl_mumbojumbo::ewim_externalEntityRefHandler);
|
||||
XML_SetProcessingInstructionHandler(parser_, expat_wrapper_impl_mumbojumbo::ewim_processingInstruction);
|
||||
} // setCallbacks
|
||||
|
@ -1009,6 +1014,13 @@ void expat_wrapper<string_type, T0, T1>::commentHandler(const XML_Char *data)
|
|||
lexicalHandler_->comment(SA::construct_from_utf8(data));
|
||||
} // commentHandler
|
||||
|
||||
template<class string_type, class T0, class T1>
|
||||
void expat_wrapper<string_type, T0, T1>::skippedEntity(const XML_Char *entityName)
|
||||
{
|
||||
if(contentHandler_)
|
||||
contentHandler_->skippedEntity(SA::construct_from_utf8(entityName));
|
||||
} // skippedEntity
|
||||
|
||||
template<class string_type, class T0, class T1>
|
||||
int expat_wrapper<string_type, T0, T1>::externalEntityRefHandler(XML_Parser parser,
|
||||
const XML_Char* context,
|
||||
|
|
|
@ -119,6 +119,13 @@ void ewim_commentHandler(void* userData, const XML_Char* data)
|
|||
p->commentHandler(data);
|
||||
} // commentHandler
|
||||
|
||||
void ewim_skippedEntityHandler(void* userData, const XML_Char* entityName, int is_parameter_entity)
|
||||
{
|
||||
expat2base* p = reinterpret_cast<expat2base*>(userData);
|
||||
p->skippedEntity(entityName);
|
||||
} // skippedEntityHandler
|
||||
|
||||
|
||||
int ewim_externalEntityRefHandler(XML_Parser parser,
|
||||
const XML_Char* context,
|
||||
const XML_Char* base,
|
||||
|
|
|
@ -1,47 +1,20 @@
|
|||
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||
# Visual Studio 2008
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_SAX_Pyx", "example_SAX_pyx.vcproj", "{5214A867-2768-4CD0-9E29-6EED20718556}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{4CA72415-D03A-4447-BE4E-C093A5146CAC} = {4CA72415-D03A-4447-BE4E-C093A5146CAC}
|
||||
{436B423B-BF20-4B2E-A187-604AF391FBE2} = {436B423B-BF20-4B2E-A187-604AF391FBE2}
|
||||
EndProjectSection
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual C++ Express 2010
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_SAX_pyx", "example_SAX_pyx.vcxproj", "{5214A867-2768-4CD0-9E29-6EED20718556}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_SAX_SimpleHandler", "example_SAX_simplehander.vcproj", "{4D861155-0183-4637-8F01-4F8FDB43C344}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{4CA72415-D03A-4447-BE4E-C093A5146CAC} = {4CA72415-D03A-4447-BE4E-C093A5146CAC}
|
||||
{436B423B-BF20-4B2E-A187-604AF391FBE2} = {436B423B-BF20-4B2E-A187-604AF391FBE2}
|
||||
EndProjectSection
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_SAX_SimpleHandler", "example_SAX_simplehander.vcxproj", "{4D861155-0183-4637-8F01-4F8FDB43C344}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_SAX_Writer", "example_SAX_writer.vcproj", "{C57BA030-A81F-4EA2-9CB6-D1BE2404B787}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{4CA72415-D03A-4447-BE4E-C093A5146CAC} = {4CA72415-D03A-4447-BE4E-C093A5146CAC}
|
||||
{436B423B-BF20-4B2E-A187-604AF391FBE2} = {436B423B-BF20-4B2E-A187-604AF391FBE2}
|
||||
EndProjectSection
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_SAX_writer", "example_SAX_writer.vcxproj", "{C57BA030-A81F-4EA2-9CB6-D1BE2404B787}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_SAX_XMLBase", "example_SAX_xmlbase.vcproj", "{1E3CEC10-26EB-40C0-AC9A-72020BD5A40A}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{4CA72415-D03A-4447-BE4E-C093A5146CAC} = {4CA72415-D03A-4447-BE4E-C093A5146CAC}
|
||||
{436B423B-BF20-4B2E-A187-604AF391FBE2} = {436B423B-BF20-4B2E-A187-604AF391FBE2}
|
||||
EndProjectSection
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_SAX_xmlbase", "example_SAX_xmlbase.vcxproj", "{1E3CEC10-26EB-40C0-AC9A-72020BD5A40A}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_DOM_Writer", "example_DOM_writer.vcproj", "{C1CF7801-1681-4F15-8D71-BBC814805AF2}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{1E3CEC10-26EB-40C0-AC9A-72020BD5A40A} = {1E3CEC10-26EB-40C0-AC9A-72020BD5A40A}
|
||||
{4CA72415-D03A-4447-BE4E-C093A5146CAC} = {4CA72415-D03A-4447-BE4E-C093A5146CAC}
|
||||
{C57BA030-A81F-4EA2-9CB6-D1BE2404B787} = {C57BA030-A81F-4EA2-9CB6-D1BE2404B787}
|
||||
{436B423B-BF20-4B2E-A187-604AF391FBE2} = {436B423B-BF20-4B2E-A187-604AF391FBE2}
|
||||
{4D861155-0183-4637-8F01-4F8FDB43C344} = {4D861155-0183-4637-8F01-4F8FDB43C344}
|
||||
{5214A867-2768-4CD0-9E29-6EED20718556} = {5214A867-2768-4CD0-9E29-6EED20718556}
|
||||
EndProjectSection
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_DOM_writer", "example_DOM_writer.vcxproj", "{C1CF7801-1681-4F15-8D71-BBC814805AF2}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_Utils_Transcode", "example_Utils_transcode.vcproj", "{436B423B-BF20-4B2E-A187-604AF391FBE2}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{4CA72415-D03A-4447-BE4E-C093A5146CAC} = {4CA72415-D03A-4447-BE4E-C093A5146CAC}
|
||||
EndProjectSection
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_Utils_transcode", "example_Utils_transcode.vcxproj", "{436B423B-BF20-4B2E-A187-604AF391FBE2}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ArabicaLib", "lib_arabica_noboost.vcproj", "{4CA72415-D03A-4447-BE4E-C093A5146CAC}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_SAX_Taggle", "example_SAX_Taggle.vcproj", "{274EB942-0AA8-4715-8419-4722868A22BA}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_SAX_Taggle", "example_SAX_Taggle.vcxproj", "{274EB942-0AA8-4715-8419-4722868A22BA}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
|
@ -43,7 +43,7 @@
|
|||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\..\bin\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\Release_examples_DOM_writer\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
||||
<TargetName>DOMWriter</TargetName>
|
||||
<TargetName>DOMWriter</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
|
@ -125,6 +125,10 @@
|
|||
<Project>{1e3cec10-26eb-40c0-ac9a-72020bd5a40a}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="example_Utils_transcode.vcxproj">
|
||||
<Project>{436b423b-bf20-4b2e-a187-604af391fbe2}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="lib_arabica.vcxproj">
|
||||
<Project>{4ca72415-d03a-4447-be4e-c093a5146cac}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
|
@ -40,7 +40,7 @@
|
|||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">.\Debug_example_SAX_taggle\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\..\bin\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\Release_example_SAX_taggle\</IntDir>
|
||||
<TargetName>taggle</TargetName>
|
||||
<TargetName>taggle</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
|
@ -101,6 +101,10 @@
|
|||
<Project>{4d861155-0183-4637-8f01-4f8fdb43c344}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="example_SAX_Taggle.vcxproj">
|
||||
<Project>{274eb942-0aa8-4715-8419-4722868a22ba}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="example_SAX_writer.vcxproj">
|
||||
<Project>{c57ba030-a81f-4ea2-9cb6-d1be2404b787}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
|
@ -44,7 +44,7 @@
|
|||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\..\bin\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\Release_examples_SAX_pyx\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
||||
<TargetName>pyx</TargetName>
|
||||
<TargetName>pyx</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
|
@ -120,6 +120,10 @@
|
|||
<ClCompile Include="..\examples\Sax\pyx.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="example_Utils_transcode.vcxproj">
|
||||
<Project>{436b423b-bf20-4b2e-a187-604af391fbe2}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="lib_arabica.vcxproj">
|
||||
<Project>{4ca72415-d03a-4447-be4e-c093a5146cac}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
|
@ -45,7 +45,7 @@
|
|||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\..\bin\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\Release_examples_SAX_simple\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
||||
<TargetName>simplehandler</TargetName>
|
||||
<TargetName>simplehandler</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
|
@ -124,6 +124,10 @@
|
|||
<ClInclude Include="..\examples\Sax\SimpleHandler.hpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="example_Utils_transcode.vcxproj">
|
||||
<Project>{436b423b-bf20-4b2e-a187-604af391fbe2}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="lib_arabica.vcxproj">
|
||||
<Project>{4ca72415-d03a-4447-be4e-c093a5146cac}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
|
@ -44,7 +44,7 @@
|
|||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\..\bin\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\Release_examples_SAX_writer\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
||||
<TargetName>Writer</TargetName>
|
||||
<TargetName>Writer</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
|
@ -119,6 +119,10 @@
|
|||
<ClCompile Include="..\examples\Sax\writer.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="example_Utils_transcode.vcxproj">
|
||||
<Project>{436b423b-bf20-4b2e-a187-604af391fbe2}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="lib_arabica.vcxproj">
|
||||
<Project>{4ca72415-d03a-4447-be4e-c093a5146cac}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
|
@ -43,7 +43,7 @@
|
|||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\..\bin\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\Release_examples_SAX_xmlbase\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
||||
<TargetName>xmlbase</TargetName>
|
||||
<TargetName>xmlbase</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
|
@ -101,6 +101,10 @@
|
|||
<ClCompile Include="..\examples\Sax\xmlbase.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="example_Utils_transcode.vcxproj">
|
||||
<Project>{436b423b-bf20-4b2e-a187-604af391fbe2}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="lib_arabica.vcxproj">
|
||||
<Project>{4ca72415-d03a-4447-be4e-c093a5146cac}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
|
@ -43,7 +43,7 @@
|
|||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\..\bin\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\Release_example_Utils_transcode\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
||||
<TargetName>transcode</TargetName>
|
||||
<TargetName>transcode</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
|
@ -106,6 +106,10 @@
|
|||
<ClCompile Include="..\examples\Utils\transcode.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="example_Utils_transcode.vcxproj">
|
||||
<Project>{436b423b-bf20-4b2e-a187-604af391fbe2}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="lib_arabica.vcxproj">
|
||||
<Project>{4ca72415-d03a-4447-be4e-c093a5146cac}</Project>
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
|
|
Loading…
Reference in a new issue