Move PCRE to separate project (2011)
This commit is contained in:
Vendored
+94
@@ -0,0 +1,94 @@
|
|||||||
|
<?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">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup Label="Globals">
|
||||||
|
<ProjectGuid>{91920268-4395-419F-8CE5-DA7E11A5C1FD}</ProjectGuid>
|
||||||
|
<RootNamespace>libpcre</RootNamespace>
|
||||||
|
<ProjectName>libpcre</ProjectName>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v110</PlatformToolset>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v110</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Label="UserMacros" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<OutDir>$(IntDir)</OutDir>
|
||||||
|
<IntDir>$(SolutionDir)/build-$(SolutionName)/$(ProjectName)/$(Configuration)\</IntDir>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<OutDir>$(IntDir)</OutDir>
|
||||||
|
<IntDir>$(SolutionDir)/build-$(SolutionName)/$(ProjectName)/$(Configuration)\</IntDir>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PrecompiledHeaderFile />
|
||||||
|
<PrecompiledHeaderOutputFile />
|
||||||
|
<CompileAs>CompileAsC</CompileAs>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>MaxSpeed</Optimization>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PrecompiledHeaderFile />
|
||||||
|
<PrecompiledHeaderOutputFile />
|
||||||
|
<CompileAs>CompileAsC</CompileAs>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="chartables.c" />
|
||||||
|
<ClCompile Include="get.c" />
|
||||||
|
<ClCompile Include="maketables.c" />
|
||||||
|
<ClCompile Include="pcre.c" />
|
||||||
|
<ClCompile Include="study.c" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="internal.h" />
|
||||||
|
<ClInclude Include="pcre.h" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
||||||
+14
@@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="chartables.c" />
|
||||||
|
<ClCompile Include="get.c" />
|
||||||
|
<ClCompile Include="maketables.c" />
|
||||||
|
<ClCompile Include="pcre.c" />
|
||||||
|
<ClCompile Include="study.c" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="internal.h" />
|
||||||
|
<ClInclude Include="pcre.h" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
@@ -1312,56 +1312,6 @@ cl /Zl /nologo /c verstub.cpp /Fo"$(IntDir)"</Command>
|
|||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='FastDebug|Win32'">NotUsing</PrecompiledHeader>
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='FastDebug|Win32'">NotUsing</PrecompiledHeader>
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\extern\pcre\chartables.c">
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='FastDebug|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release-SSE2|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\extern\pcre\get.c">
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='FastDebug|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release-SSE2|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\extern\pcre\maketables.c">
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='FastDebug|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release-SSE2|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\extern\pcre\pcre.c">
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='FastDebug|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release-SSE2|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\extern\pcre\study.c">
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='FastDebug|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release-SSE2|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
</PrecompiledHeader>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\extern\lua-5.1\src\lapi.c">
|
<ClCompile Include="..\extern\lua-5.1\src\lapi.c">
|
||||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
</PrecompiledHeader>
|
</PrecompiledHeader>
|
||||||
@@ -2346,8 +2296,6 @@ cl /Zl /nologo /c verstub.cpp /Fo"$(IntDir)"</Command>
|
|||||||
<ClInclude Include="..\extern\libpng\include\scripts\pnglibconf.h" />
|
<ClInclude Include="..\extern\libpng\include\scripts\pnglibconf.h" />
|
||||||
<ClInclude Include="..\extern\libpng\include\pngpriv.h" />
|
<ClInclude Include="..\extern\libpng\include\pngpriv.h" />
|
||||||
<ClInclude Include="..\extern\libpng\include\pngstruct.h" />
|
<ClInclude Include="..\extern\libpng\include\pngstruct.h" />
|
||||||
<ClInclude Include="..\extern\pcre\internal.h" />
|
|
||||||
<ClInclude Include="..\extern\pcre\pcre.h" />
|
|
||||||
<ClInclude Include="..\extern\lua-5.1\src\lapi.h" />
|
<ClInclude Include="..\extern\lua-5.1\src\lapi.h" />
|
||||||
<ClInclude Include="..\extern\lua-5.1\src\lauxlib.h" />
|
<ClInclude Include="..\extern\lua-5.1\src\lauxlib.h" />
|
||||||
<ClInclude Include="..\extern\lua-5.1\src\lcode.h" />
|
<ClInclude Include="..\extern\lua-5.1\src\lcode.h" />
|
||||||
@@ -2384,6 +2332,9 @@ cl /Zl /nologo /c verstub.cpp /Fo"$(IntDir)"</Command>
|
|||||||
<ResourceCompile Include="archutils\Win32\WindowsResources.rc" />
|
<ResourceCompile Include="archutils\Win32\WindowsResources.rc" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\extern\pcre\libpcre-net2011.vcxproj">
|
||||||
|
<Project>{91920268-4395-419f-8ce5-da7e11a5c1fd}</Project>
|
||||||
|
</ProjectReference>
|
||||||
<ProjectReference Include="libtomcrypt\libtomcrypt-net2011.vcxproj">
|
<ProjectReference Include="libtomcrypt\libtomcrypt-net2011.vcxproj">
|
||||||
<Project>{f70dd0fe-a74a-42e7-b81f-e35c49fc9eb9}</Project>
|
<Project>{f70dd0fe-a74a-42e7-b81f-e35c49fc9eb9}</Project>
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||||
|
|||||||
@@ -103,9 +103,6 @@
|
|||||||
<Filter Include="Helpers\libpng">
|
<Filter Include="Helpers\libpng">
|
||||||
<UniqueIdentifier>{a89b61cf-bbf6-4303-a32a-6eec76f78893}</UniqueIdentifier>
|
<UniqueIdentifier>{a89b61cf-bbf6-4303-a32a-6eec76f78893}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter Include="Helpers\pcre">
|
|
||||||
<UniqueIdentifier>{b4c5e8c8-60f5-44c6-9529-832212276d1a}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Helpers\Lua">
|
<Filter Include="Helpers\Lua">
|
||||||
<UniqueIdentifier>{c2c701a5-a88f-4a36-ab40-43619668f88f}</UniqueIdentifier>
|
<UniqueIdentifier>{c2c701a5-a88f-4a36-ab40-43619668f88f}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
@@ -1500,21 +1497,6 @@
|
|||||||
<ClCompile Include="..\extern\libpng\include\pngwutil.c">
|
<ClCompile Include="..\extern\libpng\include\pngwutil.c">
|
||||||
<Filter>Helpers\libpng</Filter>
|
<Filter>Helpers\libpng</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\extern\pcre\chartables.c">
|
|
||||||
<Filter>Helpers\pcre</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\extern\pcre\get.c">
|
|
||||||
<Filter>Helpers\pcre</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\extern\pcre\maketables.c">
|
|
||||||
<Filter>Helpers\pcre</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\extern\pcre\pcre.c">
|
|
||||||
<Filter>Helpers\pcre</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\extern\pcre\study.c">
|
|
||||||
<Filter>Helpers\pcre</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\extern\lua-5.1\src\lapi.c">
|
<ClCompile Include="..\extern\lua-5.1\src\lapi.c">
|
||||||
<Filter>Helpers\Lua</Filter>
|
<Filter>Helpers\Lua</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@@ -2924,12 +2906,6 @@
|
|||||||
<ClInclude Include="..\extern\libpng\include\pngstruct.h">
|
<ClInclude Include="..\extern\libpng\include\pngstruct.h">
|
||||||
<Filter>Helpers\libpng</Filter>
|
<Filter>Helpers\libpng</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\extern\pcre\internal.h">
|
|
||||||
<Filter>Helpers\pcre</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\extern\pcre\pcre.h">
|
|
||||||
<Filter>Helpers\pcre</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\extern\lua-5.1\src\lapi.h">
|
<ClInclude Include="..\extern\lua-5.1\src\lapi.h">
|
||||||
<Filter>Helpers\Lua</Filter>
|
<Filter>Helpers\Lua</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
|||||||
@@ -7,6 +7,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libtommath", "libtommath\li
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libtomcrypt", "libtomcrypt\libtomcrypt-net2011.vcxproj", "{F70DD0FE-A74A-42E7-B81F-E35C49FC9EB9}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libtomcrypt", "libtomcrypt\libtomcrypt-net2011.vcxproj", "{F70DD0FE-A74A-42E7-B81F-E35C49FC9EB9}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpcre", "..\extern\pcre\libpcre-net2011.vcxproj", "{91920268-4395-419F-8CE5-DA7E11A5C1FD}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
@@ -39,6 +41,14 @@ Global
|
|||||||
{F70DD0FE-A74A-42E7-B81F-E35C49FC9EB9}.Release|Win32.Build.0 = Release|Win32
|
{F70DD0FE-A74A-42E7-B81F-E35C49FC9EB9}.Release|Win32.Build.0 = Release|Win32
|
||||||
{F70DD0FE-A74A-42E7-B81F-E35C49FC9EB9}.Release-SSE2|Win32.ActiveCfg = Release-SSE2|Win32
|
{F70DD0FE-A74A-42E7-B81F-E35C49FC9EB9}.Release-SSE2|Win32.ActiveCfg = Release-SSE2|Win32
|
||||||
{F70DD0FE-A74A-42E7-B81F-E35C49FC9EB9}.Release-SSE2|Win32.Build.0 = Release-SSE2|Win32
|
{F70DD0FE-A74A-42E7-B81F-E35C49FC9EB9}.Release-SSE2|Win32.Build.0 = Release-SSE2|Win32
|
||||||
|
{91920268-4395-419F-8CE5-DA7E11A5C1FD}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
|
{91920268-4395-419F-8CE5-DA7E11A5C1FD}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
|
{91920268-4395-419F-8CE5-DA7E11A5C1FD}.FastDebug|Win32.ActiveCfg = Debug|Win32
|
||||||
|
{91920268-4395-419F-8CE5-DA7E11A5C1FD}.FastDebug|Win32.Build.0 = Debug|Win32
|
||||||
|
{91920268-4395-419F-8CE5-DA7E11A5C1FD}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
|
{91920268-4395-419F-8CE5-DA7E11A5C1FD}.Release|Win32.Build.0 = Release|Win32
|
||||||
|
{91920268-4395-419F-8CE5-DA7E11A5C1FD}.Release-SSE2|Win32.ActiveCfg = Release|Win32
|
||||||
|
{91920268-4395-419F-8CE5-DA7E11A5C1FD}.Release-SSE2|Win32.Build.0 = Release|Win32
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|||||||
Reference in New Issue
Block a user