Mercurial > hg > index.cgi
comparison win/lwar.vcxproj @ 391:15d1628180e7
Add missing files to 221b5f58d8ad
author | William Astle <lost@l-w.ca> |
---|---|
date | Mon, 13 Jul 2015 21:53:33 -0600 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
390:1ebb5a0b2874 | 391:15d1628180e7 |
---|---|
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <Project DefaultTargets="Build" ToolsVersion="12.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 <ItemGroup> | |
14 <ProjectReference Include="lwlib.vcxproj"> | |
15 <Project>{93a52e3f-d19d-4a1a-8b8f-15270bd3d0e2}</Project> | |
16 </ProjectReference> | |
17 </ItemGroup> | |
18 <ItemGroup> | |
19 <ClCompile Include="..\lwar\add.c" /> | |
20 <ClCompile Include="..\lwar\extract.c" /> | |
21 <ClCompile Include="..\lwar\list.c" /> | |
22 <ClCompile Include="..\lwar\lwar.c" /> | |
23 <ClCompile Include="..\lwar\main.c" /> | |
24 <ClCompile Include="..\lwar\remove.c" /> | |
25 <ClCompile Include="..\lwar\replace.c" /> | |
26 </ItemGroup> | |
27 <ItemGroup> | |
28 <ClInclude Include="..\lwar\lwar.h" /> | |
29 </ItemGroup> | |
30 <PropertyGroup Label="Globals"> | |
31 <ProjectGuid>{D3F0DBD9-6275-428B-950F-01FE32D77A58}</ProjectGuid> | |
32 <Keyword>Win32Proj</Keyword> | |
33 <RootNamespace>lwasm</RootNamespace> | |
34 </PropertyGroup> | |
35 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
36 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | |
37 <ConfigurationType>Application</ConfigurationType> | |
38 <UseDebugLibraries>true</UseDebugLibraries> | |
39 <PlatformToolset>v120</PlatformToolset> | |
40 <CharacterSet>Unicode</CharacterSet> | |
41 </PropertyGroup> | |
42 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | |
43 <ConfigurationType>Application</ConfigurationType> | |
44 <UseDebugLibraries>false</UseDebugLibraries> | |
45 <PlatformToolset>v120</PlatformToolset> | |
46 <WholeProgramOptimization>true</WholeProgramOptimization> | |
47 <CharacterSet>Unicode</CharacterSet> | |
48 </PropertyGroup> | |
49 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |
50 <ImportGroup Label="ExtensionSettings"> | |
51 </ImportGroup> | |
52 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
53 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
54 </ImportGroup> | |
55 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
56 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
57 </ImportGroup> | |
58 <PropertyGroup Label="UserMacros" /> | |
59 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
60 <LinkIncremental>true</LinkIncremental> | |
61 <OutDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</OutDir> | |
62 <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</IntDir> | |
63 </PropertyGroup> | |
64 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
65 <LinkIncremental>false</LinkIncremental> | |
66 <OutDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</OutDir> | |
67 <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</IntDir> | |
68 </PropertyGroup> | |
69 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
70 <ClCompile> | |
71 <PrecompiledHeader> | |
72 </PrecompiledHeader> | |
73 <WarningLevel>Level3</WarningLevel> | |
74 <Optimization>Disabled</Optimization> | |
75 <PreprocessorDefinitions>WIN32;_CRT_SECURE_NO_WARNINGS;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
76 <AdditionalIncludeDirectories>../lwlib</AdditionalIncludeDirectories> | |
77 </ClCompile> | |
78 <Link> | |
79 <SubSystem>Console</SubSystem> | |
80 <GenerateDebugInformation>true</GenerateDebugInformation> | |
81 </Link> | |
82 </ItemDefinitionGroup> | |
83 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
84 <ClCompile> | |
85 <WarningLevel>Level3</WarningLevel> | |
86 <PrecompiledHeader> | |
87 </PrecompiledHeader> | |
88 <Optimization>MaxSpeed</Optimization> | |
89 <FunctionLevelLinking>true</FunctionLevelLinking> | |
90 <IntrinsicFunctions>true</IntrinsicFunctions> | |
91 <PreprocessorDefinitions>WIN32;_CRT_SECURE_NO_WARNINGS;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
92 <AdditionalIncludeDirectories>../lwlib</AdditionalIncludeDirectories> | |
93 </ClCompile> | |
94 <Link> | |
95 <SubSystem>Console</SubSystem> | |
96 <GenerateDebugInformation>true</GenerateDebugInformation> | |
97 <EnableCOMDATFolding>true</EnableCOMDATFolding> | |
98 <OptimizeReferences>true</OptimizeReferences> | |
99 </Link> | |
100 </ItemDefinitionGroup> | |
101 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |
102 <ImportGroup Label="ExtensionTargets"> | |
103 </ImportGroup> | |
104 </Project> |