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 -->
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations"> <!-- DO NOT EDIT IN VISUAL STUDIO! -->
<!-- TODO what does the Include clause do? -->
<ProjectConfiguration Include="Debug|Win32"> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform> <ItemGroup Label="ProjectConfigurations">
</ProjectConfiguration> <!-- TODO what does the Include clause do? -->
</ItemGroup> <ProjectConfiguration Include="Debug|Win32">
<PropertyGroup Label="Globals"> <Configuration>Debug</Configuration>
<TargetFrameworkVersion>v3.0</TargetFrameworkVersion> <Platform>Win32</Platform>
<ProjectGuid>{2B7F1F47-EE47-47CD-9C6C-42D9620E46E3}</ProjectGuid> </ProjectConfiguration>
</PropertyGroup> </ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> <PropertyGroup Label="Globals">
<ConfigurationType>DynamicLibrary</ConfigurationType> <TargetFrameworkVersion>v3.0</TargetFrameworkVersion>
<UseDebugLibraries>true</UseDebugLibraries> <ProjectGuid>{2B7F1F47-EE47-47CD-9C6C-42D9620E46E3}</ProjectGuid>
<PlatformToolset>v120</PlatformToolset> </PropertyGroup>
<CLRSupport>true</CLRSupport>
<CharacterSet>Unicode</CharacterSet> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.default.props" />
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ImportGroup Label="ExtensionSettings" /> <ConfigurationType>DynamicLibrary</ConfigurationType>
<ImportGroup Label="PropertySheets" /> <UseDebugLibraries>true</UseDebugLibraries>
<PropertyGroup Label="UserMacros" /> <PlatformToolset>v120</PlatformToolset>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <CLRSupport>true</CLRSupport>
<LinkIncremental>false</LinkIncremental> <CharacterSet>Unicode</CharacterSet>
<TargetName>libui</TargetName> </PropertyGroup>
<EnableManagedIncrementalBuild>false</EnableManagedIncrementalBuild>
<CustomBuildBeforeTargets>Link</CustomBuildBeforeTargets> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ImportGroup Label="ExtensionSettings" />
<ClCompile> <ImportGroup Label="PropertySheets" />
<WarningLevel>EnableAllWarnings</WarningLevel> <PropertyGroup Label="UserMacros" />
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<AdditionalOptions>additional compiler options %(AdditionalOptions)</AdditionalOptions> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
</ClCompile> <LinkIncremental>false</LinkIncremental>
<Link> <TargetName>libui</TargetName>
<GenerateDebugInformation>true</GenerateDebugInformation> <EnableManagedIncrementalBuild>false</EnableManagedIncrementalBuild>
<AdditionalDependencies>kernel32.lib ole32.lib</AdditionalDependencies> <!-- <CustomBuildBeforeTargets>Link</CustomBuildBeforeTargets>-->
<SubSystem>Windows</SubSystem> </PropertyGroup>
<MinimumRequiredVersion>600</MinimumRequiredVersion>
<AdditionalOptions>additional linker options %(AdditionalOptions)</AdditionalOptions> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
</Link> <ClCompile>
<CustomBuildStep> <WarningLevel>EnableAllWarnings</WarningLevel>
<Command>extra command</Command> <PrecompiledHeader>NotUsing</PrecompiledHeader>
</CustomBuildStep> <!-- <AdditionalOptions>additional compiler options %(AdditionalOptions)</AdditionalOptions>-->
</ItemDefinitionGroup> </ClCompile>
<ItemGroup> <Link>
<Reference Include="System" /> <GenerateDebugInformation>true</GenerateDebugInformation>
<Reference Include="WindowsBase" /> <AdditionalDependencies>kernel32.lib ole32.lib</AdditionalDependencies>
<Reference Include="PresentationCore" /> <SubSystem>Windows</SubSystem>
<Reference Include="PresentationFramework" /> <!--TODO <MinimumRequiredVersion>600</MinimumRequiredVersion>-->
<!-- <!-- <AdditionalOptions>additional linker options %(AdditionalOptions)</AdditionalOptions>--
</Link>
<CustomBuildStep>
<Command>extra command</Command>
</CustomBuildStep>
</ItemDefinitionGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="WindowsBase" />
<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" />
</Project> <ImportGroup Label="ExtensionTargets" />
</Project>