1
0
mirror of https://github.com/XProger/OpenLara.git synced 2025-08-10 15:14:28 +02:00

levels converter

This commit is contained in:
XProger
2021-10-31 05:14:32 +03:00
parent bce4ed8149
commit 25bea24245
3 changed files with 2200 additions and 67 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -72,15 +72,19 @@
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>true</LinkIncremental>
<IncludePath>$(ProjectDir)\libimagequant;$(ProjectDir)\stb;$(IncludePath)</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
<IncludePath>$(ProjectDir)\libimagequant;$(ProjectDir)\stb;$(IncludePath)</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>true</LinkIncremental>
<IncludePath>$(ProjectDir)\libimagequant;$(ProjectDir)\stb;$(IncludePath)</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
<IncludePath>$(ProjectDir)\libimagequant;$(ProjectDir)\stb;$(IncludePath)</IncludePath>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
@@ -139,8 +143,18 @@
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="libimagequant\blur.c" />
<ClCompile Include="libimagequant\kmeans.c" />
<ClCompile Include="libimagequant\libimagequant.c" />
<ClCompile Include="libimagequant\mediancut.c" />
<ClCompile Include="libimagequant\mempool.c" />
<ClCompile Include="libimagequant\nearest.c" />
<ClCompile Include="libimagequant\pam.c" />
<ClCompile Include="main.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="stb\stb_image_resize.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>

View File

@@ -2,5 +2,15 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ClCompile Include="main.cpp" />
<ClCompile Include="libimagequant\libimagequant.c" />
<ClCompile Include="libimagequant\pam.c" />
<ClCompile Include="libimagequant\blur.c" />
<ClCompile Include="libimagequant\kmeans.c" />
<ClCompile Include="libimagequant\mediancut.c" />
<ClCompile Include="libimagequant\mempool.c" />
<ClCompile Include="libimagequant\nearest.c" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="stb\stb_image_resize.h" />
</ItemGroup>
</Project>