<?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|@PLATFORM@"> | |
<Configuration>Debug</Configuration> | |
<Platform>@PLATFORM@</Platform> | |
</ProjectConfiguration> | |
<ProjectConfiguration Include="Release|@PLATFORM@"> | |
<Configuration>Release</Configuration> | |
<Platform>@PLATFORM@</Platform> | |
</ProjectConfiguration> | |
</ItemGroup> | |
<PropertyGroup Label="Globals"> | |
<ProjectGuid>{9B003E52-F02A-47EA-9942-2D9AE8738161}</ProjectGuid> | |
<Keyword>Win32Proj</Keyword> | |
<RootNamespace>keyconv</RootNamespace> | |
</PropertyGroup> | |
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|@PLATFORM@'" Label="Configuration"> | |
<ConfigurationType>Application</ConfigurationType> | |
<UseDebugLibraries>true</UseDebugLibraries> | |
<CharacterSet>Unicode</CharacterSet> | |
<PlatformToolset>@PLATFORMTOOLSET@</PlatformToolset> | |
</PropertyGroup> | |
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|@PLATFORM@'" Label="Configuration"> | |
<ConfigurationType>Application</ConfigurationType> | |
<UseDebugLibraries>false</UseDebugLibraries> | |
<WholeProgramOptimization>true</WholeProgramOptimization> | |
<CharacterSet>Unicode</CharacterSet> | |
<PlatformToolset>@PLATFORMTOOLSET@</PlatformToolset> | |
</PropertyGroup> | |
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |
<ImportGroup Label="ExtensionSettings"> | |
</ImportGroup> | |
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|@PLATFORM@'"> | |
<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|@PLATFORM@'"> | |
<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|@PLATFORM@'"> | |
<LinkIncremental>true</LinkIncremental> | |
<TargetName>softhsm2-keyconv</TargetName> | |
</PropertyGroup> | |
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|@PLATFORM@'"> | |
<LinkIncremental>false</LinkIncremental> | |
<TargetName>softhsm2-keyconv</TargetName> | |
</PropertyGroup> | |
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|@PLATFORM@'"> | |
<ClCompile> | |
<PrecompiledHeader> | |
</PrecompiledHeader> | |
<WarningLevel>Level3</WarningLevel> | |
<Optimization>Disabled</Optimization> | |
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
<AdditionalIncludeDirectories>..;..\..\src\bin\common;..\..\src\bin\win32;..\..\src\lib\pkcs11;..\..\src\lib\crypto;@DEBUGINCPATH@;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
<RuntimeLibrary>@RUNTIMELIBRARY@</RuntimeLibrary> | |
</ClCompile> | |
<Link> | |
<SubSystem>Console</SubSystem> | |
<GenerateDebugInformation>true</GenerateDebugInformation> | |
<AdditionalLibraryDirectories>@DEBUGLIBPATH@;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | |
<AdditionalDependencies>@LIBNAME@;@EXTRALIBS@%(AdditionalDependencies)</AdditionalDependencies> | |
</Link> | |
</ItemDefinitionGroup> | |
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|@PLATFORM@'"> | |
<ClCompile> | |
<WarningLevel>Level3</WarningLevel> | |
<PrecompiledHeader> | |
</PrecompiledHeader> | |
<Optimization>MaxSpeed</Optimization> | |
<FunctionLevelLinking>true</FunctionLevelLinking> | |
<IntrinsicFunctions>true</IntrinsicFunctions> | |
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
<AdditionalIncludeDirectories>..;..\..\src\bin\common;..\..\src\bin\win32;..\..\src\lib\pkcs11;..\..\src\lib\crypto;@INCLUDEPATH@;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
<RuntimeLibrary>@RUNTIMELIBRARY@</RuntimeLibrary> | |
</ClCompile> | |
<Link> | |
<SubSystem>Console</SubSystem> | |
<GenerateDebugInformation>true</GenerateDebugInformation> | |
<EnableCOMDATFolding>true</EnableCOMDATFolding> | |
<OptimizeReferences>true</OptimizeReferences> | |
<AdditionalLibraryDirectories>@LIBPATH@;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | |
<AdditionalDependencies>@LIBNAME@;@EXTRALIBS@%(AdditionalDependencies)</AdditionalDependencies> | |
</Link> | |
</ItemDefinitionGroup> | |
<ItemGroup> | |
<ClInclude Include="..\..\src\bin\common\getpw.h" /> | |
<ClInclude Include="..\..\src\bin\common\library.h" /> | |
<ClInclude Include="..\..\src\bin\keyconv\softhsm2-keyconv.h" /> | |
@IF OPENSSL | |
<ClInclude Include="..\..\src\lib\crypto\OSSLComp.h" /> | |
@END OPENSSL | |
<ClInclude Include="..\..\src\bin\win32\getopt.h" /> | |
<ClInclude Include="..\config.h" /> | |
</ItemGroup> | |
<ItemGroup> | |
<ClCompile Include="..\..\src\bin\common\getpw.cpp" /> | |
<ClCompile Include="..\..\src\bin\common\library.cpp" /> | |
<ClCompile Include="..\..\src\bin\keyconv\base64.c" /> | |
@IF BOTAN | |
<ClCompile Include="..\..\src\bin\keyconv\softhsm2-keyconv-botan.cpp" /> | |
@END BOTAN | |
@IF OPENSSL | |
<ClCompile Include="..\..\src\bin\keyconv\softhsm2-keyconv-ossl.cpp" /> | |
<ClCompile Include="..\..\src\lib\crypto\OSSLComp.cpp" /> | |
@END OPENSSL | |
<ClCompile Include="..\..\src\bin\keyconv\softhsm2-keyconv.cpp" /> | |
<ClCompile Include="..\..\src\bin\win32\getopt.cpp" /> | |
<ClCompile Include="..\..\src\bin\win32\getpassphase.cpp" /> | |
</ItemGroup> | |
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |
<ImportGroup Label="ExtensionTargets"> | |
</ImportGroup> | |
</Project> |