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,63 +1,77 @@
<?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">
<!-- TODO what does the Include clause do? --> <ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32"> <!-- TODO what does the Include clause do? -->
<Configuration>Debug</Configuration> <ProjectConfiguration Include="Debug|Win32">
<Platform>Win32</Platform> <Configuration>Debug</Configuration>
</ProjectConfiguration> <Platform>Win32</Platform>
</ItemGroup> </ProjectConfiguration>
<PropertyGroup Label="Globals"> </ItemGroup>
<TargetFrameworkVersion>v3.0</TargetFrameworkVersion>
<ProjectGuid>{2B7F1F47-EE47-47CD-9C6C-42D9620E46E3}</ProjectGuid> <PropertyGroup Label="Globals">
</PropertyGroup> <TargetFrameworkVersion>v3.0</TargetFrameworkVersion>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.default.props" /> <ProjectGuid>{2B7F1F47-EE47-47CD-9C6C-42D9620E46E3}</ProjectGuid>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> </PropertyGroup>
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.default.props" />
<PlatformToolset>v120</PlatformToolset>
<CLRSupport>true</CLRSupport> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<CharacterSet>Unicode</CharacterSet> <ConfigurationType>DynamicLibrary</ConfigurationType>
</PropertyGroup> <UseDebugLibraries>true</UseDebugLibraries>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <PlatformToolset>v120</PlatformToolset>
<ImportGroup Label="ExtensionSettings" /> <CLRSupport>true</CLRSupport>
<ImportGroup Label="PropertySheets" /> <CharacterSet>Unicode</CharacterSet>
<PropertyGroup Label="UserMacros" /> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>false</LinkIncremental> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<TargetName>libui</TargetName>
<EnableManagedIncrementalBuild>false</EnableManagedIncrementalBuild> <ImportGroup Label="ExtensionSettings" />
<CustomBuildBeforeTargets>Link</CustomBuildBeforeTargets> <ImportGroup Label="PropertySheets" />
</PropertyGroup> <PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>false</LinkIncremental>
<TargetName>libui</TargetName>
<EnableManagedIncrementalBuild>false</EnableManagedIncrementalBuild>
<!-- <CustomBuildBeforeTargets>Link</CustomBuildBeforeTargets>-->
</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>
<Reference Include="System" /> <ItemGroup>
<Reference Include="WindowsBase" /> <Reference Include="System" />
<Reference Include="PresentationCore" /> <Reference Include="WindowsBase" />
<Reference Include="PresentationFramework" /> <Reference Include="PresentationCore" />
<!-- <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>