And fixed up the vcxproj file.

This commit is contained in:
Pietro Gagliardi 2015-11-25 07:26:48 -05:00
parent b8f4febe3c
commit e641ba4000
1 changed files with 74 additions and 60 deletions

View File

@ -1,6 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- 24 november 2015 --> <!-- 24 november 2015 -->
<!-- DO NOT EDIT IN VISUAL STUDIO! -->
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations"> <ItemGroup Label="ProjectConfigurations">
<!-- TODO what does the Include clause do? --> <!-- TODO what does the Include clause do? -->
<ProjectConfiguration Include="Debug|Win32"> <ProjectConfiguration Include="Debug|Win32">
@ -8,11 +12,14 @@
<Platform>Win32</Platform> <Platform>Win32</Platform>
</ProjectConfiguration> </ProjectConfiguration>
</ItemGroup> </ItemGroup>
<PropertyGroup Label="Globals"> <PropertyGroup Label="Globals">
<TargetFrameworkVersion>v3.0</TargetFrameworkVersion> <TargetFrameworkVersion>v3.0</TargetFrameworkVersion>
<ProjectGuid>{2B7F1F47-EE47-47CD-9C6C-42D9620E46E3}</ProjectGuid> <ProjectGuid>{2B7F1F47-EE47-47CD-9C6C-42D9620E46E3}</ProjectGuid>
</PropertyGroup> </PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.default.props" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType> <ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries> <UseDebugLibraries>true</UseDebugLibraries>
@ -20,44 +27,51 @@
<CLRSupport>true</CLRSupport> <CLRSupport>true</CLRSupport>
<CharacterSet>Unicode</CharacterSet> <CharacterSet>Unicode</CharacterSet>
</PropertyGroup> </PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings" /> <ImportGroup Label="ExtensionSettings" />
<ImportGroup Label="PropertySheets" /> <ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros" /> <PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>false</LinkIncremental> <LinkIncremental>false</LinkIncremental>
<TargetName>libui</TargetName> <TargetName>libui</TargetName>
<EnableManagedIncrementalBuild>false</EnableManagedIncrementalBuild> <EnableManagedIncrementalBuild>false</EnableManagedIncrementalBuild>
<CustomBuildBeforeTargets>Link</CustomBuildBeforeTargets> <!-- <CustomBuildBeforeTargets>Link</CustomBuildBeforeTargets>-->
</PropertyGroup> </PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile> <ClCompile>
<WarningLevel>EnableAllWarnings</WarningLevel> <WarningLevel>EnableAllWarnings</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader> <PrecompiledHeader>NotUsing</PrecompiledHeader>
<AdditionalOptions>additional compiler options %(AdditionalOptions)</AdditionalOptions> <!-- <AdditionalOptions>additional compiler options %(AdditionalOptions)</AdditionalOptions>-->
</ClCompile> </ClCompile>
<Link> <Link>
<GenerateDebugInformation>true</GenerateDebugInformation> <GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalDependencies>kernel32.lib ole32.lib</AdditionalDependencies> <AdditionalDependencies>kernel32.lib ole32.lib</AdditionalDependencies>
<SubSystem>Windows</SubSystem> <SubSystem>Windows</SubSystem>
<MinimumRequiredVersion>600</MinimumRequiredVersion> <!--TODO <MinimumRequiredVersion>600</MinimumRequiredVersion>-->
<AdditionalOptions>additional linker options %(AdditionalOptions)</AdditionalOptions> <!-- <AdditionalOptions>additional linker options %(AdditionalOptions)</AdditionalOptions>--
</Link> </Link>
<CustomBuildStep> <CustomBuildStep>
<Command>extra command</Command> <Command>extra command</Command>
</CustomBuildStep> </CustomBuildStep>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemGroup> <ItemGroup>
<Reference Include="System" /> <Reference Include="System" />
<Reference Include="WindowsBase" /> <Reference Include="WindowsBase" />
<Reference Include="PresentationCore" /> <Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" /> <Reference Include="PresentationFramework" />
<!--
<ClInclude Include="wpf.h" /> <ClInclude Include="wpf.h" />
<ClCompile Include="wpf.cpp" /> <ClCompile Include="wpf.cpp" />
-->
</ItemGroup> </ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets" /> <ImportGroup Label="ExtensionTargets" />
</Project> </Project>