mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 10:34:05 +00:00
bf2c2a1330
- Added threads.h to VS project - Included Windows.h in threads.h
144 lines
6.3 KiB
XML
144 lines
6.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
<ProjectConfiguration Include="Debug|Win32">
|
|
<Configuration>Debug</Configuration>
|
|
<Platform>Win32</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Debug|x64">
|
|
<Configuration>Debug</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Release|Win32">
|
|
<Configuration>Release</Configuration>
|
|
<Platform>Win32</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Release|x64">
|
|
<Configuration>Release</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
</ItemGroup>
|
|
<PropertyGroup Label="Globals">
|
|
<ProjectGuid>{EEA3BDD1-8A08-41C1-BA57-E05D5C2CD8FF}</ProjectGuid>
|
|
<Keyword>Win32Proj</Keyword>
|
|
<RootNamespace>kvazaar_lib</RootNamespace>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
<ImportGroup Label="ExtensionSettings">
|
|
<Import Project="..\yasm\vsyasm.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
<Import Project="..\C_Properties.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
|
<Import Project="..\C_Properties.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
<Import Project="..\C_Properties.props" />
|
|
<Import Project="..\Release_Optimizations.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
|
<Import Project="..\C_Properties.props" />
|
|
<Import Project="..\Release_Optimizations.props" />
|
|
</ImportGroup>
|
|
<PropertyGroup Label="UserMacros" />
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
<OutDir>$(SolutionDir)$(Platform)-$(Configuration)-libs\</OutDir>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<OutDir>$(SolutionDir)$(Platform)-$(Configuration)-libs\</OutDir>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
<OutDir>$(SolutionDir)$(Platform)-$(Configuration)-libs\</OutDir>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<OutDir>$(SolutionDir)$(Platform)-$(Configuration)-libs\</OutDir>
|
|
</PropertyGroup>
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<YASM>
|
|
<Defines>ARCH_X86_64=1</Defines>
|
|
</YASM>
|
|
</ItemDefinitionGroup>
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
<YASM>
|
|
<Defines>ARCH_X86_64=0;PREFIX</Defines>
|
|
</YASM>
|
|
</ItemDefinitionGroup>
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
<YASM>
|
|
<Defines>ARCH_X86_64=0;PREFIX</Defines>
|
|
</YASM>
|
|
</ItemDefinitionGroup>
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<YASM>
|
|
<Defines>ARCH_X86_64=1</Defines>
|
|
</YASM>
|
|
</ItemDefinitionGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="..\..\src\bitstream.c" />
|
|
<ClCompile Include="..\..\src\cabac.c" />
|
|
<ClCompile Include="..\..\src\config.c" />
|
|
<ClCompile Include="..\..\src\context.c" />
|
|
<ClCompile Include="..\..\src\encmain.c" />
|
|
<ClCompile Include="..\..\src\encoder.c" />
|
|
<ClCompile Include="..\..\src\extras\getopt.c" />
|
|
<ClCompile Include="..\..\src\filter.c" />
|
|
<ClCompile Include="..\..\src\inter.c" />
|
|
<ClCompile Include="..\..\src\intra.c" />
|
|
<ClCompile Include="..\..\src\nal.c" />
|
|
<ClCompile Include="..\..\src\picture.c" />
|
|
<ClCompile Include="..\..\src\rdo.c" />
|
|
<ClCompile Include="..\..\src\sao.c" />
|
|
<ClCompile Include="..\..\src\scalinglist.c" />
|
|
<ClCompile Include="..\..\src\search.c" />
|
|
<ClCompile Include="..\..\src\strategyselector.c" />
|
|
<ClCompile Include="..\..\src\tables.c" />
|
|
<ClCompile Include="..\..\src\transform.c" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClInclude Include="..\..\src\bitstream.h" />
|
|
<ClInclude Include="..\..\src\cabac.h" />
|
|
<ClInclude Include="..\..\src\config.h" />
|
|
<ClInclude Include="..\..\src\context.h" />
|
|
<ClInclude Include="..\..\src\encoder.h" />
|
|
<ClInclude Include="..\..\src\extras\getopt.h" />
|
|
<ClInclude Include="..\..\src\filter.h" />
|
|
<ClInclude Include="..\..\src\global.h" />
|
|
<ClInclude Include="..\..\src\inter.h" />
|
|
<ClInclude Include="..\..\src\intra.h" />
|
|
<ClInclude Include="..\..\src\nal.h" />
|
|
<ClInclude Include="..\..\src\picture.h" />
|
|
<ClInclude Include="..\..\src\rdo.h" />
|
|
<ClInclude Include="..\..\src\sao.h" />
|
|
<ClInclude Include="..\..\src\scalinglist.h" />
|
|
<ClInclude Include="..\..\src\search.h" />
|
|
<ClInclude Include="..\..\src\tables.h" />
|
|
<ClInclude Include="..\..\src\threads.h" />
|
|
<ClInclude Include="..\..\src\transform.h" />
|
|
<ClInclude Include="..\..\src\x86\cpu.h" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<YASM Include="..\..\src\x86\cpu.asm" />
|
|
</ItemGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
<ImportGroup Label="ExtensionTargets">
|
|
<Import Project="..\yasm\vsyasm.targets" />
|
|
</ImportGroup>
|
|
</Project> |