-
Notifications
You must be signed in to change notification settings - Fork 512
Expand file tree
/
Copy pathdocker_wrapper.vcxproj
More file actions
48 lines (48 loc) · 2.19 KB
/
Copy pathdocker_wrapper.vcxproj
File metadata and controls
48 lines (48 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?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" />
<PropertyGroup>
<PlatformSuffix Condition="'$(Platform)'=='x64'">x86_64</PlatformSuffix>
<PlatformSuffix Condition="'$(Platform)'=='ARM64'">ARM64</PlatformSuffix>
<TargetVersion>22</TargetVersion>
<TargetName>$(ProjectName)_$(TargetVersion)_windows_$(PlatformSuffix)</TargetName>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<AdditionalIncludeDirectories>.;..;../api;../lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
<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>