-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy path11_localmesh.vcxproj
57 lines (57 loc) · 2.43 KB
/
11_localmesh.vcxproj
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
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" Condition="'$(AregSdkRoot)'==''">
<Import Project="$(SolutionDir)msvc_setup.props" />
</ImportGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(AregConfigDir)compile.props" Label="LocalAppCompileSettings" />
</ImportGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{18CE1C5F-A87D-42E2-B9F8-89FDD6ECE323}</ProjectGuid>
<ProjectName>11_localmesh</ProjectName>
<RootNamespace>11_localmesh</RootNamespace>
<Keyword>Win32Proj</Keyword>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
</PropertyGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(AregConfigDir)project.props" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<ItemDefinitionGroup Condition="'$(ConfigShortName)'=='Debug'">
<ClCompile>
<PreprocessorDefinitions>IMPORT_SHARED_SYMBOLS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(ConfigShortName)'=='Release'">
<ClCompile>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>IMPORT_SHARED_SYMBOLS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="locsvcmesh\src\ServiceHelloWorld.cpp" />
<ClCompile Include="locsvcmesh\src\ServiceClient.cpp" />
<ClCompile Include="locsvcmesh\src\ServicingComponents.cpp" />
<ClCompile Include="locsvcmesh\src\main.cpp" />
<ClCompile Include="locsvcmesh\src\ClientComponent.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="locsvcmesh\src\ServiceHelloWorld.hpp" />
<ClInclude Include="locsvcmesh\src\ServiceClient.hpp" />
<ClInclude Include="locsvcmesh\src\ServicingComponents.hpp" />
<ClInclude Include="locsvcmesh\src\ClientComponent.hpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>