Skip to content

Commit 018eb0a

Browse files
committed
updated project files
1 parent a15980e commit 018eb0a

4 files changed

Lines changed: 233 additions & 219 deletions

File tree

Source/datadisplay.vcxproj

Lines changed: 107 additions & 107 deletions
Original file line numberDiff line numberDiff line change
@@ -1,108 +1,108 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" ToolsVersion="15.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>{E4EB1268-DCC8-4044-8A78-45EA75D1F162}</ProjectGuid>
15-
<Keyword>Win32Proj</Keyword>
16-
<RootNamespace>datadisplay</RootNamespace>
17-
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
18-
</PropertyGroup>
19-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
20-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
21-
<ConfigurationType>Application</ConfigurationType>
22-
<UseDebugLibraries>true</UseDebugLibraries>
23-
<CharacterSet>NotSet</CharacterSet>
24-
<PlatformToolset>v141</PlatformToolset>
25-
</PropertyGroup>
26-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
27-
<ConfigurationType>Application</ConfigurationType>
28-
<UseDebugLibraries>false</UseDebugLibraries>
29-
<WholeProgramOptimization>true</WholeProgramOptimization>
30-
<CharacterSet>NotSet</CharacterSet>
31-
<PlatformToolset>v141</PlatformToolset>
32-
</PropertyGroup>
33-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
34-
<ImportGroup Label="ExtensionSettings">
35-
</ImportGroup>
36-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
37-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
38-
</ImportGroup>
39-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
40-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
41-
</ImportGroup>
42-
<PropertyGroup Label="UserMacros" />
43-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
44-
<LinkIncremental>true</LinkIncremental>
45-
<OutDir>..\Result\</OutDir>
46-
<IncludePath>win;$(IncludePath)</IncludePath>
47-
</PropertyGroup>
48-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
49-
<LinkIncremental>false</LinkIncremental>
50-
<OutDir>..\Result\</OutDir>
51-
<IncludePath>win;$(IncludePath)</IncludePath>
52-
</PropertyGroup>
53-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
54-
<ClCompile>
55-
<PrecompiledHeader>
56-
</PrecompiledHeader>
57-
<WarningLevel>Level3</WarningLevel>
58-
<Optimization>Disabled</Optimization>
59-
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;WIN32_LEAN_AND_MEAN;STATIC_GETOPT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
60-
</ClCompile>
61-
<Link>
62-
<SubSystem>Console</SubSystem>
63-
<GenerateDebugInformation>true</GenerateDebugInformation>
64-
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
65-
</Link>
66-
</ItemDefinitionGroup>
67-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
68-
<ClCompile>
69-
<WarningLevel>Level3</WarningLevel>
70-
<PrecompiledHeader>
71-
</PrecompiledHeader>
72-
<Optimization>MaxSpeed</Optimization>
73-
<FunctionLevelLinking>true</FunctionLevelLinking>
74-
<IntrinsicFunctions>true</IntrinsicFunctions>
75-
<PreprocessorDefinitions>WIN32;__WIN__;NDEBUG;_CONSOLE;WIN32_LEAN_AND_MEAN;STATIC_GETOPT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
76-
</ClCompile>
77-
<Link>
78-
<SubSystem>Console</SubSystem>
79-
<GenerateDebugInformation>true</GenerateDebugInformation>
80-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
81-
<OptimizeReferences>true</OptimizeReferences>
82-
<AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
83-
</Link>
84-
</ItemDefinitionGroup>
85-
<ItemGroup>
86-
<ClCompile Include="cgidata.c">
87-
<CompileAs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Default</CompileAs>
88-
</ClCompile>
89-
<ClCompile Include="datadisplay.cpp" />
90-
<ClCompile Include="utils.cpp" />
91-
<ClCompile Include="win\drand48.cpp" />
92-
<ClCompile Include="win\getopt.c" />
93-
<ClCompile Include="win\network.cpp" />
94-
<ClCompile Include="win\systime.cpp" />
95-
</ItemGroup>
96-
<ItemGroup>
97-
<ClInclude Include="cgidata.h" />
98-
<ClInclude Include="datadisplay.h" />
99-
<ClInclude Include="drand48.h" />
100-
<ClInclude Include="getopt.h" />
101-
<ClInclude Include="network.h" />
102-
<ClInclude Include="systime.h" />
103-
<ClInclude Include="utils.h" />
104-
</ItemGroup>
105-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
106-
<ImportGroup Label="ExtensionTargets">
107-
</ImportGroup>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="15.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>{E4EB1268-DCC8-4044-8A78-45EA75D1F162}</ProjectGuid>
15+
<Keyword>Win32Proj</Keyword>
16+
<RootNamespace>datadisplay</RootNamespace>
17+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
18+
</PropertyGroup>
19+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
20+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
21+
<ConfigurationType>Application</ConfigurationType>
22+
<UseDebugLibraries>true</UseDebugLibraries>
23+
<CharacterSet>NotSet</CharacterSet>
24+
<PlatformToolset>v143</PlatformToolset>
25+
</PropertyGroup>
26+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
27+
<ConfigurationType>Application</ConfigurationType>
28+
<UseDebugLibraries>false</UseDebugLibraries>
29+
<WholeProgramOptimization>true</WholeProgramOptimization>
30+
<CharacterSet>NotSet</CharacterSet>
31+
<PlatformToolset>v143</PlatformToolset>
32+
</PropertyGroup>
33+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
34+
<ImportGroup Label="ExtensionSettings">
35+
</ImportGroup>
36+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
37+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
38+
</ImportGroup>
39+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
40+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
41+
</ImportGroup>
42+
<PropertyGroup Label="UserMacros" />
43+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
44+
<LinkIncremental>true</LinkIncremental>
45+
<OutDir>..\Result\</OutDir>
46+
<IncludePath>win;$(IncludePath)</IncludePath>
47+
</PropertyGroup>
48+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
49+
<LinkIncremental>false</LinkIncremental>
50+
<OutDir>..\Result\</OutDir>
51+
<IncludePath>win;$(IncludePath)</IncludePath>
52+
</PropertyGroup>
53+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
54+
<ClCompile>
55+
<PrecompiledHeader>
56+
</PrecompiledHeader>
57+
<WarningLevel>Level3</WarningLevel>
58+
<Optimization>Disabled</Optimization>
59+
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;WIN32_LEAN_AND_MEAN;STATIC_GETOPT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
60+
</ClCompile>
61+
<Link>
62+
<SubSystem>Console</SubSystem>
63+
<GenerateDebugInformation>true</GenerateDebugInformation>
64+
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
65+
</Link>
66+
</ItemDefinitionGroup>
67+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
68+
<ClCompile>
69+
<WarningLevel>Level3</WarningLevel>
70+
<PrecompiledHeader>
71+
</PrecompiledHeader>
72+
<Optimization>MaxSpeed</Optimization>
73+
<FunctionLevelLinking>true</FunctionLevelLinking>
74+
<IntrinsicFunctions>true</IntrinsicFunctions>
75+
<PreprocessorDefinitions>WIN32;__WIN__;NDEBUG;_CONSOLE;WIN32_LEAN_AND_MEAN;STATIC_GETOPT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
76+
</ClCompile>
77+
<Link>
78+
<SubSystem>Console</SubSystem>
79+
<GenerateDebugInformation>true</GenerateDebugInformation>
80+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
81+
<OptimizeReferences>true</OptimizeReferences>
82+
<AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
83+
</Link>
84+
</ItemDefinitionGroup>
85+
<ItemGroup>
86+
<ClCompile Include="cgidata.c">
87+
<CompileAs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Default</CompileAs>
88+
</ClCompile>
89+
<ClCompile Include="datadisplay.cpp" />
90+
<ClCompile Include="utils.cpp" />
91+
<ClCompile Include="win\drand48.cpp" />
92+
<ClCompile Include="win\getopt.c" />
93+
<ClCompile Include="win\network.cpp" />
94+
<ClCompile Include="win\systime.cpp" />
95+
</ItemGroup>
96+
<ItemGroup>
97+
<ClInclude Include="cgidata.h" />
98+
<ClInclude Include="datadisplay.h" />
99+
<ClInclude Include="drand48.h" />
100+
<ClInclude Include="getopt.h" />
101+
<ClInclude Include="network.h" />
102+
<ClInclude Include="systime.h" />
103+
<ClInclude Include="utils.h" />
104+
</ItemGroup>
105+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
106+
<ImportGroup Label="ExtensionTargets">
107+
</ImportGroup>
108108
</Project>

Source/datadisplay.vcxproj.user

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
4+
<LocalDebuggerCommandArguments>-n</LocalDebuggerCommandArguments>
5+
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
6+
</PropertyGroup>
7+
</Project>

0 commit comments

Comments
 (0)