Skip to content

Commit 088b8bb

Browse files
author
sigmoid
committed
VS2013 project
1 parent c0069bc commit 088b8bb

File tree

2 files changed

+115
-0
lines changed

2 files changed

+115
-0
lines changed

Diff for: csrp/csrp.sln

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.31101.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "csrp", "csrp.vcxproj", "{55F88BF7-994A-462B-8C6A-EC3ACC678542}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Win32 = Debug|Win32
11+
Release|Win32 = Release|Win32
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{55F88BF7-994A-462B-8C6A-EC3ACC678542}.Debug|Win32.ActiveCfg = Debug|Win32
15+
{55F88BF7-994A-462B-8C6A-EC3ACC678542}.Debug|Win32.Build.0 = Debug|Win32
16+
{55F88BF7-994A-462B-8C6A-EC3ACC678542}.Release|Win32.ActiveCfg = Release|Win32
17+
{55F88BF7-994A-462B-8C6A-EC3ACC678542}.Release|Win32.Build.0 = Release|Win32
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal

Diff for: csrp/csrp.vcxproj

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Release|Win32">
9+
<Configuration>Release</Configuration>
10+
<Platform>Win32</Platform>
11+
</ProjectConfiguration>
12+
</ItemGroup>
13+
<PropertyGroup Label="Globals">
14+
<ProjectGuid>{55F88BF7-994A-462B-8C6A-EC3ACC678542}</ProjectGuid>
15+
<Keyword>Win32Proj</Keyword>
16+
<RootNamespace>csrp</RootNamespace>
17+
</PropertyGroup>
18+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
19+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
20+
<ConfigurationType>Application</ConfigurationType>
21+
<UseDebugLibraries>true</UseDebugLibraries>
22+
<PlatformToolset>v120</PlatformToolset>
23+
<CharacterSet>Unicode</CharacterSet>
24+
</PropertyGroup>
25+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
26+
<ConfigurationType>Application</ConfigurationType>
27+
<UseDebugLibraries>false</UseDebugLibraries>
28+
<PlatformToolset>v120</PlatformToolset>
29+
<WholeProgramOptimization>true</WholeProgramOptimization>
30+
<CharacterSet>Unicode</CharacterSet>
31+
</PropertyGroup>
32+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
33+
<ImportGroup Label="ExtensionSettings">
34+
</ImportGroup>
35+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
36+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
37+
</ImportGroup>
38+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
39+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
40+
</ImportGroup>
41+
<PropertyGroup Label="UserMacros" />
42+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
43+
<LinkIncremental>true</LinkIncremental>
44+
</PropertyGroup>
45+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
46+
<LinkIncremental>false</LinkIncremental>
47+
</PropertyGroup>
48+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
49+
<ClCompile>
50+
<PrecompiledHeader>
51+
</PrecompiledHeader>
52+
<WarningLevel>Level3</WarningLevel>
53+
<Optimization>Disabled</Optimization>
54+
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
55+
<AdditionalIncludeDirectories>D:\dev\openssl\openssl-1.0.2e-vs2013\include</AdditionalIncludeDirectories>
56+
</ClCompile>
57+
<Link>
58+
<SubSystem>Console</SubSystem>
59+
<GenerateDebugInformation>true</GenerateDebugInformation>
60+
<AdditionalDependencies>D:\dev\openssl\openssl-1.0.2e-vs2013\lib\libeay32MTd.lib;D:\dev\openssl\openssl-1.0.2e-vs2013\lib\ssleay32MTd.lib;%(AdditionalDependencies)</AdditionalDependencies>
61+
</Link>
62+
</ItemDefinitionGroup>
63+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
64+
<ClCompile>
65+
<WarningLevel>Level3</WarningLevel>
66+
<PrecompiledHeader>
67+
</PrecompiledHeader>
68+
<Optimization>MaxSpeed</Optimization>
69+
<FunctionLevelLinking>true</FunctionLevelLinking>
70+
<IntrinsicFunctions>true</IntrinsicFunctions>
71+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
72+
<AdditionalIncludeDirectories>D:\dev\openssl\openssl-1.0.2e-vs2013\include</AdditionalIncludeDirectories>
73+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
74+
</ClCompile>
75+
<Link>
76+
<SubSystem>Console</SubSystem>
77+
<GenerateDebugInformation>true</GenerateDebugInformation>
78+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
79+
<OptimizeReferences>true</OptimizeReferences>
80+
<AdditionalDependencies>D:\dev\openssl\openssl-1.0.2e-vs2013\lib\libeay32MT.lib;D:\dev\openssl\openssl-1.0.2e-vs2013\lib\ssleay32MT.lib;%(AdditionalDependencies)</AdditionalDependencies>
81+
</Link>
82+
</ItemDefinitionGroup>
83+
<ItemGroup>
84+
<ClInclude Include="..\srp.h" />
85+
</ItemGroup>
86+
<ItemGroup>
87+
<ClCompile Include="..\srp.c" />
88+
<ClCompile Include="..\test_srp.c" />
89+
</ItemGroup>
90+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
91+
<ImportGroup Label="ExtensionTargets">
92+
</ImportGroup>
93+
</Project>

0 commit comments

Comments
 (0)