mirror of
https://github.com/XProger/OpenLara.git
synced 2025-08-10 15:14:28 +02:00
levels converter
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -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>
|
||||
|
@@ -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>
|
Reference in New Issue
Block a user