add docker_wrapper.vcxproj to boinc.sln

Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
This commit is contained in:
Vitalii Koshura 2024-10-06 12:05:06 +02:00
parent 23e9da455a
commit d41c84cf5c
No known key found for this signature in database
GPG Key ID: CE0DB1726070A5A3
2 changed files with 51 additions and 0 deletions

View File

@ -132,6 +132,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_app_sporadic", "spo
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wsl_wrapper", "wsl_wrapper.vcxproj", "{97F092A0-AF80-4E60-89CB-D811F5AFA542}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "docker_wrapper", "docker_wrapper.vcxproj", "{D6DDDD6C-BB00-43B8-B21D-DD76DD6A4E03}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM64 = Debug|ARM64
@ -442,6 +444,14 @@ Global
{97F092A0-AF80-4E60-89CB-D811F5AFA542}.Release|ARM64.Build.0 = Release|ARM64
{97F092A0-AF80-4E60-89CB-D811F5AFA542}.Release|x64.ActiveCfg = Release|x64
{97F092A0-AF80-4E60-89CB-D811F5AFA542}.Release|x64.Build.0 = Release|x64
{D6DDDD6C-BB00-43B8-B21D-DD76DD6A4E03}.Debug|ARM64.ActiveCfg = Debug|ARM64
{D6DDDD6C-BB00-43B8-B21D-DD76DD6A4E03}.Debug|ARM64.Build.0 = Debug|ARM64
{D6DDDD6C-BB00-43B8-B21D-DD76DD6A4E03}.Debug|x64.ActiveCfg = Debug|x64
{D6DDDD6C-BB00-43B8-B21D-DD76DD6A4E03}.Debug|x64.Build.0 = Debug|x64
{D6DDDD6C-BB00-43B8-B21D-DD76DD6A4E03}.Release|ARM64.ActiveCfg = Release|ARM64
{D6DDDD6C-BB00-43B8-B21D-DD76DD6A4E03}.Release|ARM64.Build.0 = Release|ARM64
{D6DDDD6C-BB00-43B8-B21D-DD76DD6A4E03}.Release|x64.ActiveCfg = Release|x64
{D6DDDD6C-BB00-43B8-B21D-DD76DD6A4E03}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="Globals">
<ProjectName>docker_wrapper</ProjectName>
<ProjectGuid>{D6DDDD6C-BB00-43B8-B21D-DD76DD6A4E03}</ProjectGuid>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="boinc.props" />
<ItemDefinitionGroup>
<ClCompile>
<AdditionalIncludeDirectories>.;..;../api;../lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies Condition="'$(Configuration)'=='Debug'">libcmtd.lib;libcpmtd.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies Condition="'$(Configuration)'=='Release'">libcmt.lib;libcpmt.lib;%(AdditionalDependencies)</AdditionalDependencies>
<SubSystem>Console</SubSystem>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\samples\docker_wrapper\docker_wrapper.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\samples\docker_wrapper\toml.h" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="libboincapi.vcxproj">
<Project>{07bda8f7-4aaf-4a3b-b96e-ea72a143c5ae}</Project>
</ProjectReference>
<ProjectReference Include="libboinc.vcxproj">
<Project>{e8f6bd7e-461a-4733-b7d8-37b09a099ed8}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<Import Project="boinc_signing.targets" />
</Project>